i hate the engraving antichrist

This commit is contained in:
Hatterhat
2021-11-04 21:50:41 -05:00
parent 320b9300e5
commit b116a237fb
4 changed files with 14 additions and 6 deletions
+7
View File
@@ -175,3 +175,10 @@
to_chat(user, span("notice", "You deconstruct \the [src]."))
ChangeTurf(get_base_turf_by_area(src), preserve_outdoors = TRUE)
return TRUE
/turf/simulated/floor/AltClick(mob/user)
if(isliving(user))
var/mob/living/livingUser = user
if(try_graffiti(livingUser, livingUser.get_active_hand()))
return
. = ..()
@@ -9,9 +9,6 @@
attack_tile(C, L) // Be on help intent if you want to decon something.
return
if(!(C.is_screwdriver() && flooring && (flooring.flags & TURF_REMOVE_SCREWDRIVER)) && try_graffiti(user, C))
return
// Multi-z roof building
if(istype(C, /obj/item/stack/tile/roofing))
var/expended_tile = FALSE // To track the case. If a ceiling is built in a multiz zlevel, it also necessarily roofs it against weather
@@ -131,9 +131,6 @@
user.setClickCooldown(user.get_attack_speed(W))
if(!construction_stage && try_graffiti(user, W))
return
if (!user.IsAdvancedToolUser())
to_chat(user, "<span class='warning'>You don't have the dexterity to do this!</span>")
return
+7
View File
@@ -333,3 +333,10 @@
ChangeTurf(/turf/simulated/floor/airless, preserve_outdoors = TRUE)
return TRUE
return FALSE
/turf/simulated/wall/AltClick(mob/user)
if(isliving(user))
var/mob/living/livingUser = user
if(try_graffiti(livingUser, livingUser.get_active_hand()))
return
. = ..()