mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-15 12:43:13 +00:00
10 lines
277 B
Plaintext
10 lines
277 B
Plaintext
/proc/command_alert(var/text, var/title = "")
|
|
world << "<h1 class='alert'>[command_name()] Update</h1>"
|
|
|
|
if (title && length(title) > 0)
|
|
world << "<h2 class='alert'>[sanitize(title)]</h2>"
|
|
|
|
world << "<span class='alert'>[sanitize(text)]</span>"
|
|
world << "<br>"
|
|
|