Skip to content

Commit

Permalink
Update sticker.dm
Browse files Browse the repository at this point in the history
  • Loading branch information
DrDuckedGoose committed Aug 20, 2024
1 parent 3cb4909 commit 396128c
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions code/game/objects/items/sticker/sticker.dm
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,12 @@
A.attack_alien(user)
return attack_hand(user) //can be picked up by aliens

/obj/item/sticker/attack_animal(mob/living/simple_animal/M)
if(M.a_intent != INTENT_HELP && sticker_state == STICKER_STATE_STUCK)
var/atom/A = loc
A.attack_animal(M)
return attack_hand(M)

/obj/item/sticker/attackby(obj/item/I, mob/living/user, params)
//If we're stuck to something, pass the attack to our loc
if(sticker_state == STICKER_STATE_STUCK)
Expand Down

0 comments on commit 396128c

Please sign in to comment.