This commit is contained in:
Fluffy
2024-03-04 09:15:51 +00:00
committed by GitHub
parent a38487d18d
commit 543101d2f1
3 changed files with 52 additions and 0 deletions
+8
View File
@@ -1223,7 +1223,15 @@ modules/mob/living/carbon/human/life.dm if you die, you will be zoomed out.
/obj/item/proc/throw_fail_consequences(var/mob/living/carbon/C)
return
/**
* Determines if the item can be used to cut down wood (trees and the likes)
*
* Return `TRUE` if it can, `FALSE` otherwise
*/
/obj/item/proc/can_woodcut()
SHOULD_BE_PURE(TRUE)
SHOULD_NOT_SLEEP(TRUE)
return FALSE
/obj/item/proc/is_shovel()
+3
View File
@@ -737,6 +737,9 @@
return TRUE
/obj/item/crowbar/rescue_axe/can_woodcut()
return TRUE
/obj/item/crowbar/rescue_axe/red
icon_state = "rescue_axe_red"
item_state = "rescue_axe_red"