From fa46fb3c5a4ab6339faf66ed3d0d7e3eaeca8a21 Mon Sep 17 00:00:00 2001 From: Heroman Date: Tue, 12 Jul 2022 16:19:45 +1000 Subject: [PATCH] Span typo fixes --- code/modules/casino/casino.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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)