Add some un-push helpers

This commit is contained in:
Aronai Sieyes
2020-05-06 20:28:10 -04:00
parent e55f9d2deb
commit d56980bf01
2 changed files with 6 additions and 0 deletions

View File

@@ -257,6 +257,9 @@
if(Adjacent(user))
user.start_pulling(src)
/turf/CtrlClick(var/mob/user)
user.stop_pulling()
/*
Alt click
Unused except for AI

View File

@@ -37,6 +37,9 @@
if(isliving(usr))
var/mob/living/carbon/C = usr
if(!C.get_active_hand())
if(C.pulling)
C.stop_pulling()
return
to_chat(usr, "<font color='red'>You have nothing to drop in your hand.</font>")
return
drop_item()