From 1bcfdfbd980d835dac580ac3643e3bd55845f101 Mon Sep 17 00:00:00 2001 From: Chinsky Date: Mon, 15 Oct 2012 15:30:42 +0400 Subject: [PATCH] Now lighters only burn hand user is holding them. Bye bye, 80% of crew groin burns. --- code/game/objects/items/weapons/cigs_lighters.dm | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/code/game/objects/items/weapons/cigs_lighters.dm b/code/game/objects/items/weapons/cigs_lighters.dm index 1eaf66c2220..cf7f9ff20ec 100644 --- a/code/game/objects/items/weapons/cigs_lighters.dm +++ b/code/game/objects/items/weapons/cigs_lighters.dm @@ -404,7 +404,10 @@ ZIPPO user.visible_message("After a few attempts, [user] manages to light the [src].") else user << "You burn yourself while lighting the lighter." - user.adjustFireLoss(2) + if (user.l_hand == src) + apply_damage(2,BURN,"l_hand") + else + 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)