Fixes a few runtimes (#13230)

* Fixes a few runtimes

* Fixes 2 turf related runtimes

* Return TRUE
This commit is contained in:
farie82
2020-04-10 21:18:08 -06:00
committed by GitHub
parent 31bcd39262
commit 92f2015d0e
7 changed files with 15 additions and 15 deletions
+2 -1
View File
@@ -50,7 +50,8 @@
/obj/item/weldingtool/process()
var/turf/T = get_turf(src)
T.hotspot_expose(2500, 5)
if(T) // Implants for instance won't find a turf
T.hotspot_expose(2500, 5)
if(prob(5))
remove_fuel(1)
..()