Merge pull request #3111 from Crazylemon64/welding_tool_fuel_check

Fixes a flipped conditional that made welders unreadable
This commit is contained in:
Fox McCloud
2016-01-04 18:11:01 -05:00
+1 -1
View File
@@ -172,7 +172,7 @@
return
/obj/item/weapon/weldingtool/examine(mob/user)
if(!..(user, 0))
if(..(user, 0))
user << "It contains [get_fuel()] unit\s of fuel out of [max_fuel]."
/obj/item/weapon/weldingtool/suicide_act(mob/user)