1
0
mirror of https://github.com/sys4-fr/server-nalc.git synced 2024-10-02 01:10:31 +02:00

Removed all the set_hp(20) calls in homedecor

- Sofas, furnitures and longsofas don't get players to recover their hp
  anymore.
This commit is contained in:
LeMagnesium 2015-02-23 19:46:43 +01:00
parent bf4f6e70e2
commit 8b7ca866fb
3 changed files with 0 additions and 3 deletions

View File

@ -158,7 +158,6 @@ for i in ipairs(chaircolors) do
on_rightclick = function(pos, node, clicker)
pos.y = pos.y-0.1 -- player's sit position.
sit_exec(pos, node, clicker)
clicker:set_hp(20)
end,
})

View File

@ -116,7 +116,6 @@ for i in ipairs(longsofas_list) do
end
pos.y = pos.y-0.5
clicker:setpos(pos)
clicker:set_hp(20)
end
})

View File

@ -89,7 +89,6 @@ for i in ipairs(sofas_list) do
end
pos.y = pos.y-0.5
clicker:setpos(pos)
clicker:set_hp(20)
end
})