mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-08-29 08:08:49 +01:00
[MIRROR] Fixes pin the tail on the corgi. (#3699)
* Fixes pin the tail on the corgi. (#57218) There was an old check on there that was completely unnecessary to the tails being pinned, combat mode broke it further but on the whole the check wasn't necessary, so it's gone and now the game works as expected. * Fixes pin the tail on the corgi. Co-authored-by: ArcaneMusic <41715314+ArcaneMusic@users.noreply.github.com>
This commit is contained in:
@@ -29,9 +29,7 @@
|
||||
|
||||
/obj/structure/sign/poster/party_game/attackby(obj/item/I, mob/user, params)
|
||||
. = ..()
|
||||
if(!istype(I,/obj/item/tail_pin))
|
||||
return
|
||||
if(!(I.item_flags & ABSTRACT)) //We're using the same trick that tables use for placing objects x and y onto the click location.
|
||||
if(!istype(I,/obj/item/tail_pin))//We're using the same trick that tables use for placing objects x and y onto the click location.
|
||||
return
|
||||
if(!user.transferItemToLoc(I, drop_location(), silent = FALSE))
|
||||
return
|
||||
|
||||
Reference in New Issue
Block a user