From 0f57ef70ca414f201a834065fc022934ff1eac15 Mon Sep 17 00:00:00 2001 From: alex-gh Date: Fri, 14 Feb 2014 13:22:34 +0100 Subject: [PATCH] Nerfed firing items from fire extinguishers, they now do double the damage compared to throwing them normally --- code/game/objects/items/weapons/extinguisher.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/objects/items/weapons/extinguisher.dm b/code/game/objects/items/weapons/extinguisher.dm index ecba85ad365..e1d42e21d6e 100644 --- a/code/game/objects/items/weapons/extinguisher.dm +++ b/code/game/objects/items/weapons/extinguisher.dm @@ -169,7 +169,7 @@ if(locate(/obj) in src) for(var/obj/thing in src) thing.loc = get_turf(src) - thing.throw_at(target,10,rand(25,40)) + thing.throw_at(target,thing.throw_range*2,throw_speed*2) user.visible_message( "[user] fires [src] and launches [thing] at [target]!", "You fire [src] and launch [thing] at [target]!")