mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-08-26 22:50:26 +01:00
Fail-messages from notice-spans to warning-span.
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -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>")
|
||||
|
||||
Reference in New Issue
Block a user