diff --git a/code/modules/casino/casino.dm b/code/modules/casino/casino.dm index d5516efed1d..04e89cbaba5 100644 --- a/code/modules/casino/casino.dm +++ b/code/modules/casino/casino.dm @@ -529,9 +529,9 @@ if(ishuman(usr) || istype(usr, /mob/living/silicon/robot)) interval = tgui_input_number(usr, "Put the desired interval (1-1000)", "Set Interval", null, 1000, 1) if(interval>1000 || interval<1) - usr << "Invalid interval." + to_chat(usr, span_notice("Invalid interval.")) return - usr << "You set the interval to [interval]" + to_chat(usr, span_notice("You set the interval to [interval]")) return // diff --git a/code/modules/economy/casinocash.dm b/code/modules/economy/casinocash.dm index 79a057b6365..e5749504a97 100644 --- a/code/modules/economy/casinocash.dm +++ b/code/modules/economy/casinocash.dm @@ -17,7 +17,7 @@ else playsound(loc, 'sound/items/polaroid2.ogg', 50, 1) - user << "You insert [I] into [src]." + to_chat(user, span_info("You insert [I] into [src].")) spawn_casinochips(round(I:worth/5), src.loc) src.attack_hand(user) qdel(I) @@ -29,7 +29,7 @@ else playsound(loc, 'sound/items/polaroid2.ogg', 50, 1) - user << "You insert [I] into [src]." + to_chat(user, span_info("You insert [I] into [src].")) spawn_money(round(I:worth*5), src.loc) src.attack_hand(user) qdel(I) @@ -64,7 +64,7 @@ h_user.drop_from_inventory(src) h_user.drop_from_inventory(SC) h_user.put_in_hands(SC) - user << "You combine the casino chips to a stack of [SC.worth] casino credits." + to_chat(user, span_notice("You combine the casino chips to a stack of [SC.worth] casino credits.")) qdel(src) /obj/item/weapon/spacecasinocash/update_icon()