From ad34ad9da4de44cb8d914a3a2bb84d2727b3e81b Mon Sep 17 00:00:00 2001 From: Chinsky Date: Mon, 15 Oct 2012 16:48:13 +0400 Subject: [PATCH] God dammit, fix. --- code/game/objects/items/weapons/cigs_lighters.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/game/objects/items/weapons/cigs_lighters.dm b/code/game/objects/items/weapons/cigs_lighters.dm index cf7f9ff20e..33a90375c2 100644 --- a/code/game/objects/items/weapons/cigs_lighters.dm +++ b/code/game/objects/items/weapons/cigs_lighters.dm @@ -405,9 +405,9 @@ ZIPPO else user << "You burn yourself while lighting the lighter." if (user.l_hand == src) - apply_damage(2,BURN,"l_hand") + user.apply_damage(2,BURN,"l_hand") else - apply_damage(2,BURN,"r_hand") + user.apply_damage(2,BURN,"r_hand") user.visible_message("After a few attempts, [user] manages to light the [src], they however burn their finger in the process.") user.SetLuminosity(user.luminosity + 2)