Fixes runtime spam caused by altclicking tiles

Fixes every unarmed altclick on turfs runtiming because nothing bothered to check whether the person was actually holding anything to engrave with.
This commit is contained in:
Verkister
2022-01-11 23:23:18 +02:00
committed by GitHub
parent 220ee311db
commit c41461c7e4
+2 -2
View File
@@ -310,7 +310,7 @@
/turf/proc/try_graffiti(var/mob/vandal, var/obj/item/tool)
if(!tool.sharp || !can_engrave())
if(!tool || !tool.sharp || !can_engrave())
return FALSE
if(jobban_isbanned(vandal, "Graffiti"))
@@ -407,4 +407,4 @@
return
// We were the the B-side in a turf translation
/turf/proc/post_translate_B(var/turf/A)
return
return