Fail-messages from notice-spans to warning-span.

This commit is contained in:
kingofkosmos
2019-10-12 21:24:52 +03:00
parent 280d416d4f
commit dba1d2eb2d
13 changed files with 31 additions and 31 deletions
+1 -1
View File
@@ -336,7 +336,7 @@ That prevents a few funky behaviors.
AI.battery = circuit.battery
qdel(src)
else //If for some reason you use an empty card on an empty AI terminal.
to_chat(user, "There is no AI loaded on this terminal!")
to_chat(user, "<span class='alert'>There is no AI loaded on this terminal.</span>")
/obj/item/circuitboard/aicore
name = "AI core (AI Core Board)" //Well, duh, but best to be consistent
+2 -2
View File
@@ -153,7 +153,7 @@
else if(exposed)
if(!hiddenitem)
to_chat(user, "<span class='notice'>There is nothing in the drain holder.</span>")
to_chat(user, "<span class='warning'>There is nothing in the drain holder!</span>")
else
if(ishuman(user))
user.put_in_hands(hiddenitem)
@@ -167,7 +167,7 @@
/obj/structure/urinal/attackby(obj/item/I, mob/living/user, params)
if(exposed)
if (hiddenitem)
to_chat(user, "<span class='warning'>There is already something in the drain enclosure.</span>")
to_chat(user, "<span class='warning'>There is already something in the drain enclosure!</span>")
return
if(I.w_class > 1)
to_chat(user, "<span class='warning'>[I] is too large for the drain enclosure.</span>")