mirror of
https://github.com/VOREStation/VOREStation.git
synced 2026-08-21 19:19:12 +01:00
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:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user