mirror of
https://github.com/VOREStation/VOREStation.git
synced 2026-08-26 13:39:16 +01:00
refactors most spans
This commit is contained in:
@@ -107,7 +107,7 @@
|
||||
if(uses)
|
||||
uses--
|
||||
if(!uses)
|
||||
to_chat(user, "<span class='warning'>You used up your crayon!</span>")
|
||||
to_chat(user, span_warning("You used up your crayon!"))
|
||||
qdel(src)
|
||||
return
|
||||
|
||||
@@ -119,7 +119,7 @@
|
||||
if(uses)
|
||||
uses -= 5
|
||||
if(uses <= 0)
|
||||
to_chat(user, "<span class='warning'>You ate your crayon!</span>")
|
||||
to_chat(user, span_warning("You ate your crayon!"))
|
||||
qdel(src)
|
||||
else
|
||||
..()
|
||||
@@ -205,7 +205,7 @@
|
||||
if(uses)
|
||||
uses -= 5
|
||||
if(uses <= 0)
|
||||
to_chat(user, "<span class='warning'>You ate the marker!</span>")
|
||||
to_chat(user, span_warning("You ate the marker!"))
|
||||
qdel(src)
|
||||
else
|
||||
..()
|
||||
|
||||
Reference in New Issue
Block a user