mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-11 18:53:06 +00:00
[MIRROR] some more spans (#9170)
Co-authored-by: Heroman3003 <31296024+Heroman3003@users.noreply.github.com> Co-authored-by: Kashargul <KashL@t-online.de>
This commit is contained in:
@@ -4,7 +4,7 @@
|
||||
|
||||
// Mutable appearances are children of images, just so you know.
|
||||
|
||||
/mutable_appearance/New(copy_from, ...)
|
||||
/image/mutable_appearance/New(copy_from, ...)
|
||||
..()
|
||||
if(!copy_from)
|
||||
plane = FLOAT_PLANE // No clue why this is 0 by default yet images are on FLOAT_PLANE
|
||||
|
||||
@@ -58,7 +58,7 @@ var/global/list/security_printer_tickets = list() //VOREStation Edit
|
||||
|
||||
//VOREStation add Start - Ticket time!
|
||||
if(security_printer_tickets.len)
|
||||
valid_stats_list.Add("<span class = 'danger'>[security_printer_tickets.len] unique security tickets were issued today!</span><br>Examples include:")
|
||||
valid_stats_list.Add(span_danger("[security_printer_tickets.len] unique security tickets were issued today!") + "<br>Examples include:")
|
||||
var/good_num = 5
|
||||
var/ourticket
|
||||
while(good_num > 0)
|
||||
@@ -67,7 +67,7 @@ var/global/list/security_printer_tickets = list() //VOREStation Edit
|
||||
ourticket = pick(security_printer_tickets)
|
||||
security_printer_tickets -= ourticket
|
||||
if(ourticket)
|
||||
valid_stats_list.Add("<b>-</b>\"[ourticket]\"")
|
||||
valid_stats_list.Add(span_bold("-")+"\"[ourticket]\"")
|
||||
good_num--
|
||||
else
|
||||
good_num = 0
|
||||
|
||||
Reference in New Issue
Block a user