mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-11 10:43:20 +00:00
[MIRROR] next set of spans (#9247)
Co-authored-by: Kashargul <144968721+Kashargul@users.noreply.github.com> Co-authored-by: Kashargul <KashL@t-online.de>
This commit is contained in:
@@ -195,7 +195,7 @@
|
||||
PlayerNotesPageLegacy(1, filter)
|
||||
|
||||
/datum/admins/proc/PlayerNotesPageLegacy(page, filter)
|
||||
var/dat = "<B>Player notes</B> - <a href='?src=\ref[src];[HrefToken()];notes_legacy=filter'>Apply Filter</a><HR>"
|
||||
var/dat = span_bold("Player notes") + " - <a href='?src=\ref[src];[HrefToken()];notes_legacy=filter'>Apply Filter</a><HR>"
|
||||
var/savefile/S=new("data/player_notes.sav")
|
||||
var/list/note_keys
|
||||
S >> note_keys
|
||||
@@ -234,11 +234,9 @@
|
||||
|
||||
// Display a footer to select different pages
|
||||
for(var/index = 1, index <= number_pages, index++)
|
||||
if(index == page)
|
||||
dat += "<b>"
|
||||
dat += "<a href='?src=\ref[src];[HrefToken()];notes_legacy=list;index=[index];filter=[filter ? url_encode(filter) : 0]'>[index]</a> "
|
||||
if(index == page)
|
||||
dat += "</b>"
|
||||
dat = span_bold(dat)
|
||||
|
||||
usr << browse(dat, "window=player_notes;size=400x400")
|
||||
|
||||
@@ -263,7 +261,7 @@
|
||||
if(C.ckey == key)
|
||||
p_age = C.player_age
|
||||
break
|
||||
dat +="<span style='color:#000000; font-weight: bold'>Player age: [p_age]</span><br>"
|
||||
dat += span_black(span_bold("Player age: [p_age]")) + "<br>"
|
||||
|
||||
var/savefile/info = new("data/player_saves/[copytext(key, 1, 2)]/[key]/info.sav")
|
||||
var/list/infos
|
||||
|
||||
@@ -15,7 +15,7 @@
|
||||
|
||||
var/turf/T = get_turf(usr)
|
||||
if(!T || !(T.z in using_map.player_levels))
|
||||
to_chat(usr, span_warning("<b>Unable to establish a connection</b>: You're too far away from the station!"))
|
||||
to_chat(usr, span_boldwarning("Unable to establish a connection") + ": You're too far away from the station!")
|
||||
return FALSE
|
||||
|
||||
switch(action)
|
||||
|
||||
@@ -151,7 +151,7 @@
|
||||
to_chat(usr, span_notice("Hardware error: Printer was unable to print the file. It may be out of paper."))
|
||||
return
|
||||
else
|
||||
computer.visible_message("<b>\The [computer]</b> prints out paper.")
|
||||
computer.visible_message(span_bold("\The [computer]") + " prints out paper.")
|
||||
else
|
||||
var/contents = {"<h4>Crew Manifest</h4>
|
||||
<br>
|
||||
@@ -161,7 +161,7 @@
|
||||
to_chat(usr, span_notice("Hardware error: Printer was unable to print the file. It may be out of paper."))
|
||||
return
|
||||
else
|
||||
computer.visible_message("<b>\The [computer]</b> prints out paper.")
|
||||
computer.visible_message(span_bold("\The [computer]") + " prints out paper.")
|
||||
. = TRUE
|
||||
if("modify")
|
||||
if(computer && computer.card_slot)
|
||||
|
||||
Reference in New Issue
Block a user