diff --git a/code/modules/casino/casino.dm b/code/modules/casino/casino.dm
index f7f86608631..f4989b57970 100644
--- a/code/modules/casino/casino.dm
+++ b/code/modules/casino/casino.dm
@@ -222,12 +222,12 @@
/obj/item/roulette_ball/hollow/attackby(var/obj/item/W, var/mob/user)
if(trapped)
- to_chat(user, "span class='notice'>This ball already has something trapped in it!")
+ to_chat(user, "This ball already has something trapped in it!")
return
if(istype(W, /obj/item/weapon/holder))
var/obj/item/weapon/holder/H = W
if(!H.held_mob)
- to_chat(user, "span class='warning'>This holder has nobody in it? Yell at a developer!")
+ to_chat(user, "This holder has nobody in it? Yell at a developer!")
return
user.drop_from_inventory(H)
H.forceMove(src)