27 lines
580 B
Lua
27 lines
580 B
Lua
-- allows burial in unowned coffins
|
|
-- by Putnam https://gist.github.com/Putnam3145/e7031588f4d9b24b9dda
|
|
--[[=begin
|
|
|
|
burial
|
|
======
|
|
Sets all unowned coffins to allow burial. ``burial -pets`` also allows burial
|
|
of pets.
|
|
|
|
=end]]
|
|
|
|
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 |