Merge pull request #606 from Putnam3145/patch-16

Make full-heal -r optionally remove corpse.
develop
Lethosor 2015-04-29 17:37:22 -04:00
commit c095371814
1 changed files with 13 additions and 1 deletions

@ -9,7 +9,8 @@ local utils=require('utils')
validArgs = validArgs or utils.invert({
'r',
'help',
'unit'
'unit',
'keep_corpse'
})
local args = utils.processArgs({...}, validArgs)
@ -20,6 +21,8 @@ if args.help then
print(' heal the unit with the given id')
print(' full-heal -r -unit [unitId]')
print(' heal the unit with the given id and bring them back from death if they are dead')
print(' full-heal -r -keep_corpse -unit [unitId]')
print(' heal the unit with the given id and bring them back from death if they are dead, without removing their corpse')
print(' full-heal')
print(' heal the currently selected unit')
print(' full-heal -r')
@ -49,6 +52,15 @@ if unit then
unit.flags1.dead = false
unit.flags2.killed = false
unit.flags3.ghostly = false
if not args.keep_corpse then
for _,corpse in ipairs(df.global.world.items.other.CORPSE) do
if corpse.unit_id==unit.id then
corpse.flags.garbage_collect=true
corpse.flags.forbid=true
corpse.flags.hidden=true
end
end
end
--unit.unk_100 = 3
end