15 lines
428 B
Lua
15 lines
428 B
Lua
local this = {}
|
|
|
|
-- mod info variables
|
|
this.modName = "No More Friendly Fire"
|
|
this.modConfig = this.modName:gsub("%s", "")
|
|
this.modInfo = "Stop friendly fire. Player companions can't damage the player, the player " ..
|
|
"can't damage companions, and companions can't damage each other. That's it."
|
|
this.author = "Celediel"
|
|
this.version = "1.4.0"
|
|
|
|
-- debug
|
|
this.logLevels = {no = 0, small = 1, big = 2}
|
|
|
|
return this
|