Improved to_chat debug message (#4795)

Also fixed a couple related, minor bugs
This commit is contained in:
Krausus
2016-06-28 11:34:54 -04:00
committed by Fox McCloud
parent 57c7a78e9d
commit 8d7e638f6e
4 changed files with 17 additions and 6 deletions
+3 -2
View File
@@ -531,11 +531,12 @@ obj/item/toy/cards/deck/MouseDrop(atom/over_object)
if(!remove_item_from_storage(M))
M.unEquip(src)
M.put_in_l_hand(src)
else if("r_hand")
to_chat(usr, "<span class='notice'>You pick up the deck.</span>")
if("r_hand")
if(!remove_item_from_storage(M))
M.unEquip(src)
M.put_in_r_hand(src)
to_chat(usr, "<span class='notice'>You pick up the deck.</span>")
to_chat(usr, "<span class='notice'>You pick up the deck.</span>")
else
to_chat(usr, "<span class='notice'>You can't reach it from here.</span>")