[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:
SkyratBot
2021-02-27 20:30:27 +00:00
committed by GitHub
co-authored by ArcaneMusic
parent 219e5a29fc
commit d74f23c04b
+1 -3
View File
@@ -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