Merge pull request #20488 from phil235/TalkWheel

Talk wheel
This commit is contained in:
oranges
2016-09-20 21:42:52 +12:00
committed by GitHub
16 changed files with 216 additions and 14 deletions
+12
View File
@@ -465,3 +465,15 @@ It's fairly easy to fix if dealing with single letters but not so much with comp
M << "There were no ghosts willing to take control."
message_admins("No ghosts were willing to take control of [key_name_admin(M)])")
return FALSE
//toggles the talk wheel
/mob/verb/toggle_talk_wheel()
set name = "talk-wheel"
set hidden = 1
if(isliving(src))
var/mob/living/L = src
if(L.hud_used)
for(var/obj/screen/wheel/talk/TW in L.hud_used.wheels)
TW.Click()