Fixes a flipped conditional that made welders unreadable

This commit is contained in:
Crazylemon
2016-01-04 10:10:50 -08:00
parent c163372ad6
commit b06d542d50
+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)