parent
939cab4451
commit
d7717a92ab
@ -0,0 +1,19 @@
|
|||||||
|
-- allows burial in unowned coffins
|
||||||
|
-- by Putnam https://gist.github.com/Putnam3145/e7031588f4d9b24b9dda
|
||||||
|
|
||||||
|
local utils=require('utils')
|
||||||
|
|
||||||
|
validArgs = validArgs or utils.invert({
|
||||||
|
'pets'
|
||||||
|
})
|
||||||
|
|
||||||
|
local args = utils.processArgs({...}, validArgs)
|
||||||
|
|
||||||
|
for k,v in ipairs(df.global.world.buildings.other.COFFIN) do
|
||||||
|
if v.owner_id==-1 then
|
||||||
|
v.burial_mode.allow_burial=true
|
||||||
|
if not args.pets then
|
||||||
|
v.burial_mode.no_pets=true
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
Loading…
Reference in New Issue