paperwork mini update, also ASS_BLAST_USA

This commit is contained in:
Letter N
2021-03-06 19:28:29 +08:00
parent 709aaa5006
commit 4463fd9513
24 changed files with 353 additions and 157 deletions
+7 -3
View File
@@ -36,9 +36,10 @@
/obj/item/papercutter/update_icon_state()
icon_state = (storedcutter ? "[initial(icon_state)]-cutter" : "[initial(icon_state)]")
return ..()
/obj/item/papercutter/update_overlays()
. = ..()
. =..()
if(storedpaper)
. += "paper"
@@ -68,6 +69,9 @@
..()
/obj/item/papercutter/on_attack_hand(mob/user)
// . = ..()
// if(.)
// return
add_fingerprint(user)
if(!storedcutter)
to_chat(user, "<span class='warning'>The cutting blade is gone! You can't use [src] now.</span>")
@@ -118,8 +122,8 @@
/obj/item/paperslip/Initialize()
. = ..()
pixel_x = rand(-5, 5)
pixel_y = rand(-5, 5)
pixel_x = initial(pixel_x) + rand(-5, 5)
pixel_y = initial(pixel_y) + rand(-5, 5)
/obj/item/hatchet/cutterblade