diff --git a/code/_helpers/logging.dm b/code/_helpers/logging.dm index d84e3b93691..126b71ca170 100644 --- a/code/_helpers/logging.dm +++ b/code/_helpers/logging.dm @@ -142,7 +142,7 @@ var/global/log_end= world.system_type == UNIX ? ascii2text(13) : "" if(key) if(include_link && C) - . += "" + . += "" . += key diff --git a/code/_macros.dm b/code/_macros.dm index bb850690cf5..31458da86e5 100644 --- a/code/_macros.dm +++ b/code/_macros.dm @@ -92,7 +92,7 @@ /proc/place_meta_charset(content) if(istext(content)) - content = "" + content + content = "" + content return content #define to_chat(target, message) target << (message) diff --git a/code/_onclick/hud/screen/screen_holomap.dm b/code/_onclick/hud/screen/screen_holomap.dm index 4a0320885c5..af72457e814 100644 --- a/code/_onclick/hud/screen/screen_holomap.dm +++ b/code/_onclick/hud/screen/screen_holomap.dm @@ -60,7 +60,7 @@ /obj/screen/holomap_legend/Initialize(mapload, mob/_owner, ui_style, ui_color, ui_alpha, map_color, text) . = ..() saved_color = map_color - maptext = "[text]" + maptext = "[text]" alpha = 255 /obj/screen/holomap_legend/handle_click(mob/user, params) diff --git a/code/controllers/subsystems/event.dm b/code/controllers/subsystems/event.dm index 59d7eac1c20..1e9f449a1f0 100644 --- a/code/controllers/subsystems/event.dm +++ b/code/controllers/subsystems/event.dm @@ -127,12 +127,12 @@ SUBSYSTEM_DEF(event) //Event manager UI /datum/controller/subsystem/event/proc/GetInteractWindow() var/allow_random_events = get_config_value(/decl/config/toggle/allow_random_events) - var/html = "Refresh" - html += "Pause All - [allow_random_events ? "Pause" : "Resume"]" + var/html = "Refresh" + html += "Pause All - [allow_random_events ? "Pause" : "Resume"]" if(selected_event_container) var/event_time = max(0, selected_event_container.next_event_time - world.time) - html += "Back
" + html += "Back
" html += "Time till start: [round(event_time / 600, 0.1)]
" html += "
" html += "

Available [severity_to_string[selected_event_container.severity]] Events (queued & running events will not be displayed)

" @@ -142,13 +142,13 @@ SUBSYSTEM_DEF(event) for(var/datum/event_meta/EM in selected_event_container.available_events) html += "" html += "[EM.name]" - html += "[EM.weight]" + html += "[EM.weight]" html += "[EM.min_weight]" html += "[EM.max_weight]" - html += "[EM.one_shot]" - html += "[EM.enabled]" + html += "[EM.one_shot]" + html += "[EM.enabled]" html += "[selected_event_container.get_weight(EM, active_with_role)]" - html += "Remove" + html += "Remove" html += "" html += "" html += "
" @@ -158,16 +158,16 @@ SUBSYSTEM_DEF(event) html += "" html += "NameTypeWeightOneShot" html += "" - html += "[new_event.name ? new_event.name : "Enter Event"]" - html += "[new_event.event_type ? new_event.event_type : "Select Type"]" - html += "[new_event.weight ? new_event.weight : 0]" - html += "[new_event.one_shot]" + html += "[new_event.name ? new_event.name : "Enter Event"]" + html += "[new_event.event_type ? new_event.event_type : "Select Type"]" + html += "[new_event.weight ? new_event.weight : 0]" + html += "[new_event.one_shot]" html += "" html += "" - html += "Add
" + html += "Add
" html += "" else - html += "Round End Report: [report_at_round_end ? "On": "Off"]
" + html += "Round End Report: [report_at_round_end ? "On": "Off"]
" html += "
" html += "

Event Start

" @@ -181,16 +181,16 @@ SUBSYSTEM_DEF(event) html += "[worldtime2stationtime(max(EC.next_event_time, world.time))]" html += "[round(next_event_at / 600, 0.1)]" html += "" - html += "--" - html += "-" - html += "+" - html += "++" + html += "--" + html += "-" + html += "+" + html += "++" html += "" html += "" - html += "[EC.delayed ? "Resume" : "Pause"]" + html += "[EC.delayed ? "Resume" : "Pause"]" html += "" html += "" - html += "[EC.delay_modifier]" + html += "[EC.delay_modifier]" html += "" html += "" html += "" @@ -205,9 +205,9 @@ SUBSYSTEM_DEF(event) var/datum/event_meta/EM = EC.next_event html += "" html += "[severity_to_string[severity]]" - html += "[EM ? EM.name : "Random"]" - html += "View" - html += "Clear" + html += "[EM ? EM.name : "Random"]" + html += "View" + html += "Clear" html += "" html += "" html += "
" @@ -228,7 +228,7 @@ SUBSYSTEM_DEF(event) html += "[EM.name]" html += "[worldtime2stationtime(ends_at)]" html += "[ends_in]" - html += "Stop" + html += "Stop" html += "" html += "" html += "" diff --git a/code/controllers/subsystems/initialization/codex.dm b/code/controllers/subsystems/initialization/codex.dm index 7b81fd7e33d..208a53347ab 100644 --- a/code/controllers/subsystems/initialization/codex.dm +++ b/code/controllers/subsystems/initialization/codex.dm @@ -59,7 +59,7 @@ SUBSYSTEM_DEF(codex) var/datum/codex_entry/linked_entry = get_entry_by_string(key) var/replacement = linkRegex.group[4] if(linked_entry) - replacement = "[replacement]" + replacement = "[replacement]" string = replacetextEx(string, linkRegex.match, replacement) return string diff --git a/code/controllers/subsystems/vote.dm b/code/controllers/subsystems/vote.dm index 0c69d7d1c24..4e6acafd3f0 100644 --- a/code/controllers/subsystems/vote.dm +++ b/code/controllers/subsystems/vote.dm @@ -92,12 +92,12 @@ SUBSYSTEM_DEF(vote) if(active_vote) . += active_vote.interface(C.mob) if(admin) - . += "(Cancel Vote) " + . += "(Cancel Vote) " else . += "

Start a vote:



" - . += "Close" + . += "Close" return JOINTEXT(.) /datum/controller/subsystem/vote/proc/show_panel(mob/user, force_open) diff --git a/code/controllers/subsystems/zcopy.dm b/code/controllers/subsystems/zcopy.dm index ec4fddd3395..5c9ccfbfcbb 100644 --- a/code/controllers/subsystems/zcopy.dm +++ b/code/controllers/subsystems/zcopy.dm @@ -846,7 +846,7 @@ SUBSYSTEM_DEF(zcopy) /datum/controller/subsystem/zcopy/proc/fmt_label(label, atom/target, vv = TRUE) . = "\icon[target] \[[label]\] " if (vv) - . += "(VV) " + . += "(VV) " /datum/controller/subsystem/zcopy/proc/debug_fmt_planelist(list/things, list/out, turf/original) if (things) diff --git a/code/datums/communication/pray.dm b/code/datums/communication/pray.dm index 20d3f42bff9..8ddca34025e 100644 --- a/code/datums/communication/pray.dm +++ b/code/datums/communication/pray.dm @@ -12,7 +12,7 @@ if(!M.client) continue if(M.client.holder && M.client.get_preference_value(/datum/client_preference/staff/show_chat_prayers) == PREF_SHOW) - receive_communication(communicator, M, "\[SC\] \[DN\][html_icon(cross)] [SPAN_PURPLE("PRAY: ")][key_name(communicator, 1)]: [message]") + receive_communication(communicator, M, "\[SC\] \[DN\][html_icon(cross)] [SPAN_PURPLE("PRAY: ")][key_name(communicator, 1)]: [message]") else if(communicator == M) //Give it to ourselves receive_communication(communicator, M, "[html_icon(cross)] You send the prayer, \"[message]\" out into the heavens.") diff --git a/code/datums/extensions/multitool/circuitboards/buildtype_select.dm b/code/datums/extensions/multitool/circuitboards/buildtype_select.dm index 6131a23371a..703d9c4f3f6 100644 --- a/code/datums/extensions/multitool/circuitboards/buildtype_select.dm +++ b/code/datums/extensions/multitool/circuitboards/buildtype_select.dm @@ -12,7 +12,7 @@ if(path == board.build_path) dat += "[initial(thing.name)]" else - dat += "[initial(thing.name)]" + dat += "[initial(thing.name)]" dat += "" dat += "" return JOINTEXT(dat) diff --git a/code/datums/extensions/multitool/circuitboards/shuttle_console.dm b/code/datums/extensions/multitool/circuitboards/shuttle_console.dm index d1e214bd6ba..9e267968246 100644 --- a/code/datums/extensions/multitool/circuitboards/shuttle_console.dm +++ b/code/datums/extensions/multitool/circuitboards/shuttle_console.dm @@ -5,7 +5,7 @@ var/obj/item/stock_parts/circuitboard/shuttle_console/board = holder var/dat = list() dat += "Current Selected Shuttle: [board.shuttle_tag || "NONE"]
" - dat += "Synchronize to current shuttle." + dat += "Synchronize to current shuttle." return JOINTEXT(dat) /datum/extension/interactive/multitool/circuitboards/shuttle_console/on_topic(href, href_list, user) diff --git a/code/datums/extensions/multitool/circuitboards/stationalert.dm b/code/datums/extensions/multitool/circuitboards/stationalert.dm index 79757670e54..e3ec67a2024 100644 --- a/code/datums/extensions/multitool/circuitboards/stationalert.dm +++ b/code/datums/extensions/multitool/circuitboards/stationalert.dm @@ -6,9 +6,9 @@ . += "" . += "[AH.category]" if(AH in SA.alarm_handlers) - . += "ActiveInactivate" + . += "ActiveInactivate" else - . += "InactiveActivate" + . += "InactiveActivate" . += "" . += "" diff --git a/code/datums/extensions/multitool/items/cable.dm b/code/datums/extensions/multitool/items/cable.dm index c1684cf2472..f58fc823297 100644 --- a/code/datums/extensions/multitool/items/cable.dm +++ b/code/datums/extensions/multitool/items/cable.dm @@ -13,7 +13,7 @@ if(cable_coil.color == possible_cable_colours[cable_color]) . += "Selected" else - . += "Select" + . += "Select" . += "" . += "" diff --git a/code/datums/extensions/multitool/items/stock_parts_radio.dm b/code/datums/extensions/multitool/items/stock_parts_radio.dm index d6489770648..ec0b51dc454 100644 --- a/code/datums/extensions/multitool/items/stock_parts_radio.dm +++ b/code/datums/extensions/multitool/items/stock_parts_radio.dm @@ -6,7 +6,7 @@ var/obj/item/stock_parts/radio/radio = holder if(radio.status & PART_STAT_INSTALLED) return STATUS_CLOSE - return ..() + return ..() /datum/extension/interactive/multitool/radio/interact(obj/item/multitool/M, mob/user) if(extension_status(user) != STATUS_INTERACTIVE) @@ -34,15 +34,15 @@ var/obj/item/stock_parts/radio/radio = holder var/list/dat = list() - dat += "Unlink Machine
" + dat += "Unlink Machine
" var/obj/machinery/actual_machine = machine && machine.resolve() if(actual_machine && actual_machine.can_apply_preset_to(radio)) - dat += "Reset to Machine Defaults
" + dat += "Reset to Machine Defaults
" dat += "Configuration for \the [radio].
" - dat += "Frequency: [radio.frequency || "none"]
" - dat += "ID: [radio.id_tag || "none"]
" - dat += "Filter: [radio.filter || "none"]
" - dat += "Encryption key: [radio.encryption || "none"]
" + dat += "Frequency: [radio.frequency || "none"]
" + dat += "ID: [radio.id_tag || "none"]
" + dat += "Filter: [radio.filter || "none"]
" + dat += "Encryption key: [radio.encryption || "none"]
" return JOINTEXT(dat) /datum/extension/interactive/multitool/radio/on_topic(href, href_list, user) @@ -98,13 +98,13 @@ . += "" for(var/thing in selected_events) . += "" - . += "" - . += "" + . += "" + . += "" var/decl/public_access/variable = selected_events[thing] - . += "" - . += "" + . += "" + . += "" . += "" - . += "" + . += "" . += "
(-)[thing](-)[thing][variable.name](?)[variable.name](?)
(+)
(+)
" /datum/extension/interactive/multitool/radio/proc/event_list_topic(list/selected_events, list/valid_events, mob/user, href_list) @@ -202,9 +202,9 @@ dat += "Choose event:
" if(radio.event) - dat += "[radio.event] (?)" + dat += "[radio.event] (?)" else - dat += "(+)" + dat += "(+)" dat += "
" dat += "Transmit on event:
" dat += event_list_to_selection_table("on_event", radio.transmit_on_event) diff --git a/code/datums/extensions/multitool/multitool.dm b/code/datums/extensions/multitool/multitool.dm index 648036313e4..08e98ebe7eb 100644 --- a/code/datums/extensions/multitool/multitool.dm +++ b/code/datums/extensions/multitool/multitool.dm @@ -25,7 +25,7 @@ . += "Buffer Memory:
" var/buffer_name = multitool.get_buffer_name() if(buffer_name) - . += "[buffer_name] Send Purge
" + . += "[buffer_name] Send Purge
" else . += "No connection stored in the buffer." diff --git a/code/datums/mind/memory.dm b/code/datums/mind/memory.dm index 182a3772055..34dacf9ef8a 100644 --- a/code/datums/mind/memory.dm +++ b/code/datums/mind/memory.dm @@ -56,7 +56,7 @@ if(owner_name != last_owner_name) output += "[current.real_name]'s Memories
" last_owner_name = owner_name - output += "[M.memory] \[Remove\]" + output += "[M.memory] \[Remove\]" if(objectives.len > 0) output += "
Objectives:" diff --git a/code/datums/mind/mind.dm b/code/datums/mind/mind.dm index d5886fc7f01..6102b20d187 100644 --- a/code/datums/mind/mind.dm +++ b/code/datums/mind/mind.dm @@ -112,7 +112,7 @@ var/out = "[name][(current&&(current.real_name!=name))?" (as [current.real_name])":""]
" out += "Mind currently owned by key: [key] [active?"(synced)":"(not synced)"]
" - out += "Assigned role: [assigned_role]. Edit
" + out += "Assigned role: [assigned_role]. Edit
" out += "
" out += "Factions and special roles:
" var/list/all_antag_types = decls_repository.get_decls_of_subtype(/decl/special_role) @@ -126,16 +126,16 @@ var/num = 1 for(var/datum/objective/O in objectives) out += "Objective #[num]: [O.explanation_text] " - out += " \[remove\]
" + out += " \[remove\]
" num++ - out += "
\[announce objectives\]" + out += "
\[announce objectives\]" else out += "None." - out += "
\[add\]

" + out += "
\[add\]

" var/datum/goal/ambition/ambition = SSgoals.ambitions[src] - out += "Ambitions: [ambition ? ambition.description : "None"] \[edit\]
" + out += "Ambitions: [ambition ? ambition.description : "None"] \[edit\]
" show_browser(usr, out, "window=edit_memory[src]") /datum/mind/proc/get_goal_from_href(var/href) diff --git a/code/datums/repositories/client.dm b/code/datums/repositories/client.dm index 4217a4042a3..386fffcfc66 100644 --- a/code/datums/repositories/client.dm +++ b/code/datums/repositories/client.dm @@ -47,7 +47,7 @@ var/global/repository/client/client_repository = new() return "[key]/([name]) (DC)" if(check_if_offline && !client_by_ckey(ckey)) return "[key]/([name]) (DC)" - return pm_link ? "[key]/([name])[rank2text()]" : "[key]/([name])" + return pm_link ? "[key]/([name])[rank2text()]" : "[key]/([name])" /datum/client_lite/proc/rank2text() var/client/C = client_by_ckey(ckey) diff --git a/code/datums/trading/trading_verbs.dm b/code/datums/trading/trading_verbs.dm index d3273a8308c..f295335a420 100644 --- a/code/datums/trading/trading_verbs.dm +++ b/code/datums/trading/trading_verbs.dm @@ -7,7 +7,7 @@ to_chat(src, "[hub.name]:") for(var/a in hub.traders) var/datum/trader/T = a - to_chat(src, "[T.name] \ref[T]") + to_chat(src, "[T.name] \ref[T]") /client/proc/add_trader() set category = "Debug" diff --git a/code/datums/traits/_traits.dm b/code/datums/traits/_traits.dm index f406d262920..188cd77b882 100644 --- a/code/datums/traits/_traits.dm +++ b/code/datums/traits/_traits.dm @@ -200,7 +200,7 @@ break if(istype(caller) && (ticked || caller.get_trait_total() + trait_cost <= get_config_value(/decl/config/num/max_character_traits)) && !incompatible_trait_taken) - result += "[ticked ? "[name]" : "[name]"] ([trait_cost])" + result += "[ticked ? "[name]" : "[name]"] ([trait_cost])" else result += ticked ? "[name]" : "[name]" diff --git a/code/datums/vote/vote.dm b/code/datums/vote/vote.dm index c15958c5aa9..18cff66756a 100644 --- a/code/datums/vote/vote.dm +++ b/code/datums/vote/vote.dm @@ -59,7 +59,7 @@ var/text = get_start_text() log_vote(text) - to_world(SPAN_PURPLE("[text]\nType vote or click here to place your votes.\nYou have [round(time_set/10)] seconds to vote.")) + to_world(SPAN_PURPLE("[text]\nType vote or click here to place your votes.\nYou have [round(time_set/10)] seconds to vote.")) to_world(sound(pick(vote_start_sounds), repeat = 0, wait = 0, volume = 50, channel = sound_channels.vote_channel)) /datum/vote/proc/get_start_text() @@ -182,9 +182,9 @@ for(var/i = 1, i <= length(priorities), i++) . += "" . += "" if (additional_text[choice]) diff --git a/code/datums/wires/wires.dm b/code/datums/wires/wires.dm index 4a2c5e9112d..56b88e8f986 100644 --- a/code/datums/wires/wires.dm +++ b/code/datums/wires/wires.dm @@ -112,10 +112,10 @@ var/global/list/wireColourNames = list("darkred" = "dark red") html += "" html += "[capitalize(colour_name)]" html += "" - html += "[IsColourCut(colour) ? "Mend" : "Cut"]" - html += " Pulse" - html += " [IsAttached(colour) ? "Detach" : "Attach"] Signaller" - html += " Examine" + html += "[IsColourCut(colour) ? "Mend" : "Cut"]" + html += " Pulse" + html += " [IsAttached(colour) ? "Detach" : "Attach"] Signaller" + html += " Examine" html += "
" if(voted[user.ckey] && (voted[user.ckey][i] == j)) //We have this jth choice chosen at priority i. - . += "[priorities[i]]" + . += "[priorities[i]]" else - . += "[priorities[i]]" + . += "[priorities[i]]" . += "[votepercent]
" html += "" diff --git a/code/game/antagonist/antagonist_panel.dm b/code/game/antagonist/antagonist_panel.dm index c3f0c808c7e..f16e898af98 100644 --- a/code/game/antagonist/antagonist_panel.dm +++ b/code/game/antagonist/antagonist_panel.dm @@ -3,13 +3,13 @@ var/dat = "[name]:" var/extra = get_extra_panel_options(player) if(is_antagonist(player)) - dat += "\[-\]" - dat += "\[equip\]" + dat += "\[-\]" + dat += "\[equip\]" if(starting_locations && starting_locations.len) - dat += "\[move to spawn\]" + dat += "\[move to spawn\]" if(extra) dat += "[extra]" else - dat += "\[+\]" + dat += "\[+\]" dat += "" return dat @@ -27,13 +27,13 @@ var/mob/M = player.current dat += "" if(M) - dat += "[M.real_name]/([player.key])" + dat += "[M.real_name]/([player.key])" if(!M.client) dat += " (logged out)" if(M.stat == DEAD) dat += " (DEAD)" dat += "" - dat += "\[PM\]\[SR\]" + dat += "\[PM\]\[SR\]" else dat += "Mob not found/([player.key])!" dat += "" @@ -47,7 +47,7 @@ while(!isturf(disk_loc)) if(ismob(disk_loc)) var/mob/M = disk_loc - dat += "carried by [M.real_name] " + dat += "carried by [M.real_name] " if(istype(disk_loc, /obj)) var/obj/O = disk_loc dat += "in \a [O.name] " diff --git a/code/game/machinery/_machines_base/machinery.dm b/code/game/machinery/_machines_base/machinery.dm index e1d93c98d0a..135c4a4f381 100644 --- a/code/game/machinery/_machines_base/machinery.dm +++ b/code/game/machinery/_machines_base/machinery.dm @@ -419,12 +419,12 @@ Class Procs: if((stat & NOPOWER)) if(interact_offline) - to_chat(user, "It is not receiving power.") + to_chat(user, "It is not receiving power.") else - to_chat(user, "It is not receiving power, making it hard to interact with.") + to_chat(user, "It is not receiving power, making it hard to interact with.") if(construct_state && construct_state.mechanics_info()) - to_chat(user, "It can be manipulated using tools.") + to_chat(user, "It can be manipulated using tools.") var/list/missing = missing_parts() if(missing) var/list/parts = list() diff --git a/code/game/machinery/ai_slipper.dm b/code/game/machinery/ai_slipper.dm index d09354e7bd3..78f73e8df9c 100644 --- a/code/game/machinery/ai_slipper.dm +++ b/code/game/machinery/ai_slipper.dm @@ -55,8 +55,8 @@ if(src.locked && (!issilicon(user))) t += "(Swipe ID card to unlock control panel.)
" else - t += text("Dispenser [] - []?
\n", src.disabled?"deactivated":"activated", src, src.disabled?"Enable":"Disable") - t += text("Uses Left: [uses]. Activate the dispenser?
\n") + t += text("Dispenser [] - []?
\n", src.disabled?"deactivated":"activated", src, src.disabled?"Enable":"Disable") + t += text("Uses Left: [uses]. Activate the dispenser?
\n") show_browser(user, t, "window=computer;size=575x450") onclose(user, "computer") diff --git a/code/game/machinery/alarm.dm b/code/game/machinery/alarm.dm index 75221b20e6b..890d9653e03 100644 --- a/code/game/machinery/alarm.dm +++ b/code/game/machinery/alarm.dm @@ -949,31 +949,31 @@ FIRE ALARM A = A.loc if (A.fire) - d1 = text("Reset - Lockdown", src) + d1 = text("Reset - Lockdown", src) else - d1 = text("Alarm - Lockdown", src) + d1 = text("Alarm - Lockdown", src) if (src.timing) - d2 = text("Stop Time Lock", src) + d2 = text("Stop Time Lock", src) else - d2 = text("Initiate Time Lock", src) + d2 = text("Initiate Time Lock", src) var/second = round(src.time) % 60 var/minute = (round(src.time) - second) / 60 - var/dat = "Fire alarm [d1]\n
The current alert level is [security_state.current_security_level.name]

\nTimer System: [d2]
\nTime Left: [(minute ? "[minute]:" : null)][second] - - + +\n
" + var/dat = "Fire alarm [d1]\n
The current alert level is [security_state.current_security_level.name]

\nTimer System: [d2]
\nTime Left: [(minute ? "[minute]:" : null)][second] - - + +\n
" show_browser(user, dat, "window=firealarm") onclose(user, "firealarm") else A = A.loc if (A.fire) - d1 = text("[]", src, stars("Reset - Lockdown")) + d1 = text("[]", src, stars("Reset - Lockdown")) else - d1 = text("[]", src, stars("Alarm - Lockdown")) + d1 = text("[]", src, stars("Alarm - Lockdown")) if (src.timing) - d2 = text("[]", src, stars("Stop Time Lock")) + d2 = text("[]", src, stars("Stop Time Lock")) else - d2 = text("[]", src, stars("Initiate Time Lock")) + d2 = text("[]", src, stars("Initiate Time Lock")) var/second = round(src.time) % 60 var/minute = (round(src.time) - second) / 60 - var/dat = "[stars("Fire alarm")] [d1]\n
The current security level is [security_state.current_security_level.name]

\nTimer System: [d2]
\nTime Left: [(minute ? text("[]:", minute) : null)][second] - - + +\n
" + var/dat = "[stars("Fire alarm")] [d1]\n
The current security level is [security_state.current_security_level.name]

\nTimer System: [d2]
\nTime Left: [(minute ? text("[]:", minute) : null)][second] - - + +\n
" show_browser(user, dat, "window=firealarm") onclose(user, "firealarm") return @@ -1058,30 +1058,30 @@ FIRE ALARM if (ishuman(user) || isAI(user)) if (A.party) - d1 = text("No Party :(", src) + d1 = text("No Party :(", src) else - d1 = text("PARTY!!!", src) + d1 = text("PARTY!!!", src) if (timing) - d2 = text("Stop Time Lock", src) + d2 = text("Stop Time Lock", src) else - d2 = text("Initiate Time Lock", src) + d2 = text("Initiate Time Lock", src) var/second = time % 60 var/minute = (time - second) / 60 - var/dat = text("Party Button []\n
\nTimer System: []
\nTime Left: [][] - - + +\n
", d1, d2, (minute ? text("[]:", minute) : null), second, src, src, src, src) + var/dat = text("Party Button []\n
\nTimer System: []
\nTime Left: [][] - - + +\n
", d1, d2, (minute ? text("[]:", minute) : null), second, src, src, src, src) show_browser(user, dat, "window=partyalarm") onclose(user, "partyalarm") else if (A.fire) - d1 = text("[]", src, stars("No Party :(")) + d1 = text("[]", src, stars("No Party :(")) else - d1 = text("[]", src, stars("PARTY!!!")) + d1 = text("[]", src, stars("PARTY!!!")) if (timing) - d2 = text("[]", src, stars("Stop Time Lock")) + d2 = text("[]", src, stars("Stop Time Lock")) else - d2 = text("[]", src, stars("Initiate Time Lock")) + d2 = text("[]", src, stars("Initiate Time Lock")) var/second = time % 60 var/minute = (time - second) / 60 - var/dat = text("[] []\n
\nTimer System: []
\nTime Left: [][] - - + +\n
", stars("Party Button"), d1, d2, (minute ? text("[]:", minute) : null), second, src, src, src, src) + var/dat = text("[] []\n
\nTimer System: []
\nTime Left: [][] - - + +\n
", stars("Party Button"), d1, d2, (minute ? text("[]:", minute) : null), second, src, src, src, src) show_browser(user, dat, "window=partyalarm") onclose(user, "partyalarm") return diff --git a/code/game/machinery/computer/Operating.dm b/code/game/machinery/computer/Operating.dm index 0fd5d644fe5..072b89e9928 100644 --- a/code/game/machinery/computer/Operating.dm +++ b/code/game/machinery/computer/Operating.dm @@ -30,7 +30,7 @@ user.set_machine(src) var/dat = "Operating Computer\n" - dat += "Close

" //| Update" + dat += "Close

" //| Update" if(src.table && (src.table.check_victim())) src.victim = src.table.victim dat += {" diff --git a/code/game/machinery/computer/arcade_orion.dm b/code/game/machinery/computer/arcade_orion.dm index 412d5a7841b..a076d6efc4d 100644 --- a/code/game/machinery/computer/arcade_orion.dm +++ b/code/game/machinery/computer/arcade_orion.dm @@ -92,28 +92,28 @@ switch(view) if(ORION_VIEW_MAIN) if(event == ORION_TRAIL_START) //new game? New game. - dat = "

Orion Trail[emagged ? ": Realism Edition" : ""]


Learn how our ancestors got to Orion, and have fun in the process!

Start New Game

" + dat = "

Orion Trail[emagged ? ": Realism Edition" : ""]


Learn how our ancestors got to Orion, and have fun in the process!

Start New Game

" show_browser(user, dat, "window=arcade") return else event_title = event - event_actions = "Continue your journey
" + event_actions = "Continue your journey
" switch(event) if(ORION_TRAIL_GAMEOVER) event_info = "" - event_actions = "Start New Game
" + event_actions = "Start New Game
" if(ORION_TRAIL_SPACEPORT) event_title += ": [stops[port]]" event_desc = "[stopblurbs[port]]" event_info = "" if(port == 9) - event_actions = "Return to the title screen!
" + event_actions = "Return to the title screen!
" else - event_actions = "Shove off
" - event_actions += "Raid Spaceport" + event_actions = "Shove off
" + event_actions += "Raid Spaceport" if(ORION_TRAIL_SPACEPORT_RAIDED) event_title += ": [stops[port]]" - event_actions = "Shove off" + event_actions = "Shove off" if(ORION_TRAIL_RAIDERS) event_desc = "You arm yourselves as you prepare to fight off the alien menace!" if(ORION_TRAIL_DERELICT) @@ -122,30 +122,30 @@ event_desc = "A disease has spread amoungst your crew!" if(ORION_TRAIL_FLUX) event_desc = "You've entered a turbulent region. Slowing down would be better for your ship but would cost more fuel." - event_actions = "Continue as normal
" - event_actions += "Take it slow
" + event_actions = "Continue as normal
" + event_actions += "Take it slow
" if(ORION_TRAIL_MALFUNCTION) event_info = "" event_desc = "The ship's computers are malfunctioning! You can choose to fix it with a part or risk something going awry." - event_actions = "Continue as normal
" + event_actions = "Continue as normal
" if(supplies["3"] != 0) - event_actions += "Fix using a part.
" + event_actions += "Fix using a part.
" if(ORION_TRAIL_COLLISION) event_info = "" event_desc = "Something has hit your ship and breached the hull! You can choose to fix it with a part or risk something going awry." - event_actions = "Continue as normal
" + event_actions = "Continue as normal
" if(supplies["2"] != 0) - event_actions += "Fix using a part.
" + event_actions += "Fix using a part.
" if(ORION_TRAIL_BREAKDOWN) event_info = "" event_desc = "The ship's engines broke down! You can choose to fix it with a part or risk something going awry." - event_actions = "Continue as normal
" + event_actions = "Continue as normal
" if(supplies["1"] != 0) - event_actions += "Fix using a part.
" + event_actions += "Fix using a part.
" if(ORION_TRAIL_STUCK) event_desc = "You've ran out of fuel. Your only hope to survive is to get refueled by a passing ship, if there are any." if(supplies["5"] == 0) - event_actions = "Wait" + event_actions = "Wait" if(ORION_TRAIL_CARP) event_desc = "You've chanced upon a large carp migration! Known both for their delicious meat as well as their bite, you and your crew arm yourselves for a small hunting trip." if(ORION_TRAIL_MUTINY) @@ -159,18 +159,18 @@ dat += "
You have [supplies["6"]] cash.
" for(var/i=1; i<6; i++) var/amm = (i>3?10:1) - dat += "[supplies["[i]"]] [supply_name["[i]"]][event==ORION_TRAIL_SPACEPORT ? ", buy [amm] for [supply_cost["[i]"]]T" : ""]
" + dat += "[supplies["[i]"]] [supply_name["[i]"]][event==ORION_TRAIL_SPACEPORT ? ", buy [amm] for [supply_cost["[i]"]]T" : ""]
" if(supplies["[i]"] >= amm && event == ORION_TRAIL_SPACEPORT) - dat += "sell [amm] for [supply_cost["[i]"]]T
" + dat += "sell [amm] for [supply_cost["[i]"]]T
" if(ORION_VIEW_CREW) dat = "

Crew

View the status of your crew.
" for(var/i=1;i<=settlers.len;i++) - dat += "[settlers[i]] Kill
" + dat += "[settlers[i]] Kill
" dat += "

View:
" - dat += "[view==ORION_VIEW_MAIN ? "" : ""]Main[view==ORION_VIEW_MAIN ? "" : ""]
" - dat += "[view==ORION_VIEW_SUPPLIES ? "" : ""]Supplies[view==ORION_VIEW_SUPPLIES ? "" : ""]
" - dat += "[view==ORION_VIEW_CREW ? "" : ""]Crew[view==ORION_VIEW_CREW ? "" : ""]

" + dat += "[view==ORION_VIEW_MAIN ? "" : ""]Main[view==ORION_VIEW_MAIN ? "" : ""]
" + dat += "[view==ORION_VIEW_SUPPLIES ? "" : ""]Supplies[view==ORION_VIEW_SUPPLIES ? "" : ""]
" + dat += "[view==ORION_VIEW_CREW ? "" : ""]Crew[view==ORION_VIEW_CREW ? "" : ""]

" show_browser(user, dat, "window=arcade") /obj/machinery/computer/arcade/orion_trail/OnTopic(user, href_list) diff --git a/code/game/machinery/computer/area_atmos.dm b/code/game/machinery/computer/area_atmos.dm index b210f749124..f287fbbc0b3 100644 --- a/code/game/machinery/computer/area_atmos.dm +++ b/code/game/machinery/computer/area_atmos.dm @@ -63,7 +63,7 @@

Area Air Control

[status]
- Scan + Scan "} for(var/obj/machinery/portable_atmospherics/powered/scrubber/huge/scrubber in connectedscrubbers) dat += {" @@ -74,8 +74,8 @@ Flow Rate: [round(scrubber.last_flow_rate,0.1)] L/s
"} diff --git a/code/game/machinery/computer/message.dm b/code/game/machinery/computer/message.dm index cde979fbef0..69f4e4de4ab 100644 --- a/code/game/machinery/computer/message.dm +++ b/code/game/machinery/computer/message.dm @@ -94,10 +94,10 @@ dat += "

" if(auth) - dat += "

\[Authenticated\] /" - dat += " Server Power: [linked_server?.active ? "\[On\]":"\[Off\]"]

" + dat += "

\[Authenticated\] /" + dat += " Server Power: [linked_server?.active ? "\[On\]":"\[Off\]"]

" else - dat += "

\[Unauthenticated\] /" + dat += "

\[Unauthenticated\] /" dat += " Server Power: [linked_server?.active ? "\[On\]":"\[Off\]"]

" if(hacking || emag) @@ -112,19 +112,19 @@ if(0) // = TAB var/i = 0 - dat += "
[++i]. Link To A Server
" + dat += "
[++i]. Link To A Server
" if(auth) if(!linked_server || (linked_server.stat & (NOPOWER|BROKEN))) dat += "
ERROR: Server not found!
" else - dat += "
[++i]. View Request Console Logs
" - dat += "
[++i]. Clear Request Console Logs
" - dat += "
[++i]. Set Custom Key
" + dat += "
[++i]. View Request Console Logs
" + dat += "
[++i]. Clear Request Console Logs
" + dat += "
[++i]. Set Custom Key
" else dat += "

Please authenticate with the server in order to show additional options." if((isAI(user) || isrobot(user)) && (user.mind.assigned_special_role && user.mind.original == user)) //Malf/Traitor AIs can bruteforce into the system to gain the Key. - dat += "
*&@#. Bruteforce Key
" + dat += "
*&@#. Bruteforce Key
" //Hacking screen. if(2) @@ -182,7 +182,7 @@ var/id_auth = "Unauthenticated" - 15% var/priority = "Normal" - 10% */ - dat += "
Back - Refresh

" + dat += "
Back - Refresh

" dat += {"

- Turn On - Turn Off
+ Turn On + Turn Off
Load: [round(scrubber.last_power_draw)] W
"} for(var/datum/data_rc_msg/rc in linked_server.rc_msgs) @@ -191,7 +191,7 @@ break // Del - Sender - Recepient - Message // X - Al Green - Your Mom - WHAT UP!? - dat += {" + dat += {""} dat += "
XSending Dep.Receiving Dep. MessageStampID Auth.Priority.
X
[rc.send_dpt]
X
[rc.send_dpt] [rc.rec_dpt][rc.message][rc.stamp][rc.id_auth][rc.priority]
" diff --git a/code/game/machinery/computer/prisoner.dm b/code/game/machinery/computer/prisoner.dm index 2ba58369745..84a1b64504f 100644 --- a/code/game/machinery/computer/prisoner.dm +++ b/code/game/machinery/computer/prisoner.dm @@ -17,7 +17,7 @@ var/dat dat += "Prisoner Implant Manager System
" if(screen == 0) - dat += "
Unlock Console" + dat += "
Unlock Console" else if(screen == 1) dat += "
Chemical Implants
" var/turf/Tr = null @@ -26,9 +26,9 @@ if((Tr) && !LEVELS_ARE_Z_CONNECTED(Tr.z, src.z)) continue // Out of range if(!C.implanted) continue dat += "[C.imp_in.name] | Remaining Units: [C.reagents.total_volume] | Inject: " - dat += "((1))" - dat += "((5))" - dat += "((10))
" + dat += "((1))" + dat += "((5))" + dat += "((10))
" dat += "********************************
" dat += "
Tracking Implants
" for(var/obj/item/implant/tracking/T in global.tracking_implants) @@ -43,9 +43,9 @@ if(T.malfunction) loc_display = pick(teleportlocs) dat += "ID: [T.id] | Location: [loc_display]
" - dat += "(Message Holder) |
" + dat += "(Message Holder) |
" dat += "********************************
" - dat += "
Lock Console" + dat += "
Lock Console" show_browser(user, dat, "window=computer;size=400x500") onclose(user, "computer") diff --git a/code/game/machinery/cryopod.dm b/code/game/machinery/cryopod.dm index 3743f5a6a78..f76288b60c9 100644 --- a/code/game/machinery/cryopod.dm +++ b/code/game/machinery/cryopod.dm @@ -52,11 +52,11 @@ dat += "

[storage_name]
" dat += "Welcome, [user.real_name].


" - dat += "View storage log.
" + dat += "View storage log.
" if(allow_items) - dat += "View objects.
" - dat += "Recover object.
" - dat += "Recover all objects.
" + dat += "View objects.
" + dat += "Recover object.
" + dat += "Recover all objects.
" show_browser(user, dat, "window=cryopod_console") onclose(user, "cryopod_console") diff --git a/code/game/machinery/embedded_controller/airlock_controllers_dummy.dm b/code/game/machinery/embedded_controller/airlock_controllers_dummy.dm index 019b728bb15..f187d98f09c 100644 --- a/code/game/machinery/embedded_controller/airlock_controllers_dummy.dm +++ b/code/game/machinery/embedded_controller/airlock_controllers_dummy.dm @@ -113,12 +113,12 @@ if(!istype(terminal)) return . = list() - . += "ID tag: [terminal.id_tag]
" + . += "ID tag: [terminal.id_tag]
" . += "Nearby controllers:
" var/list/controllers for(var/obj/machinery/embedded_controller/radio/C in range(12, terminal)) - LAZYADD(controllers, " [C][C.id_tag] ") + LAZYADD(controllers, " [C][C.id_tag] ") if(!LAZYLEN(controllers)) . += "None." diff --git a/code/game/machinery/embedded_controller/embedded_controller_base.dm b/code/game/machinery/embedded_controller/embedded_controller_base.dm index 3b4e2b99835..bfdbc356c44 100644 --- a/code/game/machinery/embedded_controller/embedded_controller_base.dm +++ b/code/game/machinery/embedded_controller/embedded_controller_base.dm @@ -153,8 +153,8 @@ if(!istype(holder)) return . = list() - . += "ID tag: [controller.id_tag]
" - . += "Frequency: [controller.frequency]
" + . += "ID tag: [controller.id_tag]
" + . += "Frequency: [controller.frequency]
" . += "Likely tags used by controller:
" var/list/tags = controller.program?.get_receive_filters(TRUE) if(!length(tags)) diff --git a/code/game/machinery/hologram.dm b/code/game/machinery/hologram.dm index a30ad3f20cb..07afed57749 100644 --- a/code/game/machinery/hologram.dm +++ b/code/game/machinery/hologram.dm @@ -110,7 +110,7 @@ var/global/list/holopads = list() if(!AI.client) continue if (holopadType != HOLOPAD_LONG_RANGE && !SSmapping.are_connected_levels(AI.z, src.z)) continue - to_chat(AI, "Your presence is requested at \the [holopad_id].") + to_chat(AI, "Your presence is requested at \the [holopad_id].") else to_chat(user, "A request for AI presence was already sent recently.") if("Holocomms") diff --git a/code/game/machinery/kitchen/icecream.dm b/code/game/machinery/kitchen/icecream.dm index aa6838f142a..6f534e3bf51 100644 --- a/code/game/machinery/kitchen/icecream.dm +++ b/code/game/machinery/kitchen/icecream.dm @@ -89,22 +89,22 @@ var/dat dat += "ICECREAM
" dat += "Dispensing: [flavour_name] icecream

" - dat += "Vanilla icecream: Select Make x5 [product_types[ICECREAM_VANILLA]] scoops left. (Ingredients: milk, ice)
" - dat += "Strawberry icecream: Select Make x5 [product_types[ICECREAM_STRAWBERRY]] dollops left. (Ingredients: milk, ice, berry juice)
" - dat += "Chocolate icecream: Select Make x5 [product_types[ICECREAM_CHOCOLATE]] dollops left. (Ingredients: milk, ice, coco powder)
" - dat += "Blue icecream: Select Make x5 [product_types[ICECREAM_BLUE]] dollops left. (Ingredients: milk, ice, blue curacao)
" - dat += "Cherry icecream: Select Make x5 [product_types[ICECREAM_CHERRY]] dollops left. (Ingredients: milk, ice, cherry jelly)
" - dat += "Banana icecream: Select Make x5 [product_types[ICECREAM_BANANA]] dollops left. (Ingredients: milk, ice, banana)
" + dat += "Vanilla icecream: Select Make x5 [product_types[ICECREAM_VANILLA]] scoops left. (Ingredients: milk, ice)
" + dat += "Strawberry icecream: Select Make x5 [product_types[ICECREAM_STRAWBERRY]] dollops left. (Ingredients: milk, ice, berry juice)
" + dat += "Chocolate icecream: Select Make x5 [product_types[ICECREAM_CHOCOLATE]] dollops left. (Ingredients: milk, ice, coco powder)
" + dat += "Blue icecream: Select Make x5 [product_types[ICECREAM_BLUE]] dollops left. (Ingredients: milk, ice, blue curacao)
" + dat += "Cherry icecream: Select Make x5 [product_types[ICECREAM_CHERRY]] dollops left. (Ingredients: milk, ice, cherry jelly)
" + dat += "Banana icecream: Select Make x5 [product_types[ICECREAM_BANANA]] dollops left. (Ingredients: milk, ice, banana)
" dat += "
CONES
" - dat += "Waffle cones: Dispense Make x5 [product_types[CONE_WAFFLE]] cones left. (Ingredients: flour, sugar)
" - dat += "Chocolate cones: Dispense Make x5 [product_types[CONE_CHOC]] cones left. (Ingredients: flour, sugar, coco powder)
" + dat += "Waffle cones: Dispense Make x5 [product_types[CONE_WAFFLE]] cones left. (Ingredients: flour, sugar)
" + dat += "Chocolate cones: Dispense Make x5 [product_types[CONE_CHOC]] cones left. (Ingredients: flour, sugar, coco powder)
" dat += "
" dat += "VAT CONTENT
" for(var/reagent_type in reagents?.reagent_volumes) var/decl/material/R = GET_DECL(reagent_type) dat += "[R.get_reagent_name(reagents)]: [REAGENT_VOLUME(reagents, reagent_type)]" - dat += "Purge
" - dat += "Refresh Close" + dat += "Purge
" + dat += "Refresh Close" var/datum/browser/popup = new(user, "icecreamvat","Icecream Vat", 700, 500, src) popup.set_content(dat) diff --git a/code/game/machinery/magnet.dm b/code/game/machinery/magnet.dm index 0835c1e7b23..87285e91403 100644 --- a/code/game/machinery/magnet.dm +++ b/code/game/machinery/magnet.dm @@ -240,9 +240,9 @@ var/global/list/magnetic_modules = list() var/dat = "[title]

" if(!autolink) dat += {" - Frequency: [frequency]
- Code: [code]
- Probe Generators
+ Frequency: [frequency]
+ Code: [code]
+ Probe Generators
"} if(magnets.len >= 1) @@ -251,11 +251,11 @@ var/global/list/magnetic_modules = list() var/i = 0 for(var/obj/machinery/magnetic_module/M in magnets) i++ - dat += "     < \[[i]\] ([M.on ? "On":"Off"]) | Electricity level: - [M.electricity_level] +; Magnetic field: - [M.magnetic_field] +
" + dat += "     < \[[i]\] ([M.on ? "On":"Off"]) | Electricity level: - [M.electricity_level] +; Magnetic field: - [M.magnetic_field] +
" - dat += "
Speed: - [speed] +
" - dat += "Path: {[path]}
" - dat += "Moving: [moving ? "Enabled":"Disabled"]" + dat += "
Speed: - [speed] +
" + dat += "Path: {[path]}
" + dat += "Moving: [moving ? "Enabled":"Disabled"]" show_browser(user, dat, "window=magnet;size=400x500") diff --git a/code/game/machinery/message_server.dm b/code/game/machinery/message_server.dm index 513b398770d..ba19c1bb7b9 100644 --- a/code/game/machinery/message_server.dm +++ b/code/game/machinery/message_server.dm @@ -117,12 +117,12 @@ var/global/list/message_servers = list() if(priority > 1) playsound(Console.loc, 'sound/machines/chime.ogg', 80, 1) Console.audible_message("[html_icon(Console)]\The [Console] announces: 'High priority message received from [sender]!'", hearing_distance = 8) - Console.message_log += "High Priority message from [sender]
[authmsg]" + Console.message_log += "High Priority message from [sender]
[authmsg]" else if(!Console.silent) playsound(Console.loc, 'sound/machines/twobeep.ogg', 50, 1) Console.audible_message("[html_icon(Console)]\The [Console] announces: 'Message received from [sender].'", hearing_distance = 5) - Console.message_log += "Message from [sender]
[authmsg]" + Console.message_log += "Message from [sender]
[authmsg]" Console.set_light(2, 0.5) diff --git a/code/game/machinery/newscaster.dm b/code/game/machinery/newscaster.dm index 609fa5d12d7..e23f3e5d4fc 100644 --- a/code/game/machinery/newscaster.dm +++ b/code/game/machinery/newscaster.dm @@ -211,22 +211,22 @@ var/global/list/allCasters = list() //Global list that will contain reference to if(0) dat += "Welcome to Newscasting Unit #[src.unit_no].
Interface & News networks Operational." if(news_network.wanted_issue) - dat+= "
Read Wanted Issue" - dat+= "

Create Feed Channel" - dat+= "
View Feed Channels" - dat+= "
Submit new Feed story" - dat+= "
Print newspaper" - dat+= "
Re-scan User" - dat+= "

Exit" + dat+= "
Read Wanted Issue" + dat+= "

Create Feed Channel" + dat+= "
View Feed Channels" + dat+= "
Submit new Feed story" + dat+= "
Print newspaper" + dat+= "
Re-scan User" + dat+= "

Exit" if(src.securityCaster) var/wanted_already = 0 if(news_network.wanted_issue) wanted_already = 1 dat+="
Feed Security functions:
" - dat+="
[(wanted_already) ? ("Manage") : ("Publish")] \"Wanted\" Issue" - dat+="
Censor Feed Stories" - dat+="
Mark Feed Channel with [global.using_map.company_name] D-Notice" + dat+="
[(wanted_already) ? ("Manage") : ("Publish")] \"Wanted\" Issue" + dat+="
Censor Feed Stories" + dat+="
Mark Feed Channel with [global.using_map.company_name] D-Notice" dat+="

The newscaster recognises you as: [src.scanned_user]" if(1) dat+= "Local Feed Channels
" @@ -235,36 +235,36 @@ var/global/list/allCasters = list() //Global list that will contain reference to else for(var/datum/feed_channel/CHANNEL in news_network.network_channels) if(CHANNEL.is_admin_channel) - dat+="[CHANNEL.channel_name]
" + dat+="[CHANNEL.channel_name]
" else - dat+="[CHANNEL.channel_name] [(CHANNEL.censored) ? ("***") : null ]
" - dat+="

Refresh" - dat+="
Back" + dat+="[CHANNEL.channel_name] [(CHANNEL.censored) ? ("***") : null ]
" + dat+="

Refresh" + dat+="
Back" if(2) dat+="Creating new Feed Channel..." - dat+="
Channel Name: [src.channel_name]
" + dat+="
Channel Name: [src.channel_name]
" dat+="Channel Author: [src.scanned_user]
" - dat+="Will Accept Public Feeds: [(src.c_locked) ? ("NO") : ("YES")]

" - dat+="
Submit

Cancel
" + dat+="Will Accept Public Feeds: [(src.c_locked) ? ("NO") : ("YES")]

" + dat+="
Submit

Cancel
" if(3) dat+="Creating new Feed Message..." - dat+="
Receiving Channel: [src.channel_name]
" //MARK + dat+="
Receiving Channel: [src.channel_name]
" //MARK dat+="Message Author: [src.scanned_user]
" - dat+="Message Body: [src.msg]
" + dat+="Message Body: [src.msg]
" dat+="Photo: " if(photo_data && photo_data.photo) send_rsc(usr, photo_data.photo.img, "tmp_photo.png") dat+="
" - dat+="
Delete Photo
" + dat+="
Delete Photo
" else - dat+="Attach Photo" - dat+="

Submit

Cancel
" + dat+="Attach Photo" + dat+="

Submit

Cancel
" if(4) dat+="Feed story successfully submitted to [src.channel_name].

" - dat+="
Return
" + dat+="
Return
" if(5) dat+="Feed Channel [src.channel_name] created successfully.

" - dat+="
Return
" + dat+="
Return
" if(6) dat+="ERROR: Could not submit Feed story to Network.

" if(src.channel_name=="") @@ -274,7 +274,7 @@ var/global/list/allCasters = list() //Global list that will contain reference to if(src.msg == "" || src.msg == "\[REDACTED\]") dat+="Invalid message body.
" - dat+="
Return
" + dat+="
Return
" if(7) dat+="ERROR: Could not submit Feed Channel to Network.

" var/list/existing_authors = list() @@ -296,7 +296,7 @@ var/global/list/allCasters = list() //Global list that will contain reference to dat+="Channel name already in use.
" if(src.scanned_user=="Unknown") dat+="Channel author unverified.
" - dat+="
Return
" + dat+="
Return
" if(8) var/total_num=length(news_network.network_channels) var/active_num=total_num @@ -308,8 +308,8 @@ var/global/list/allCasters = list() //Global list that will contain reference to active_num-- dat+="Network currently serves a total of [total_num] Feed channels, [active_num] of which are active, and a total of [message_num] Feed Stories." //TODO: CONTINUE dat+="

Liquid Paper remaining: [(src.paper_remaining) *100 ] cm^3" - dat+="

Print Paper" - dat+="
Cancel" + dat+="

Print Paper" + dat+="
Cancel" if(9) dat+="[src.viewing_channel.channel_name]: \[created by: [src.viewing_channel.author]\] \[views: [++src.viewing_channel.views]\]
" if(src.viewing_channel.censored) @@ -331,8 +331,8 @@ var/global/list/allCasters = list() //Global list that will contain reference to dat+="[MESSAGE.caption]
" dat+="
" dat+="\[Story by [MESSAGE.author] - [MESSAGE.time_stamp]\]
" - dat+="

Refresh" - dat+="
Back" + dat+="

Refresh" + dat+="
Back" if(10) dat+="[global.using_map.company_name] Feed Censorship Tool
" dat+="NOTE: Due to the nature of news Feeds, total deletion of a Feed Story is not possible.
" @@ -342,8 +342,8 @@ var/global/list/allCasters = list() //Global list that will contain reference to dat+="No feed channels found active...
" else for(var/datum/feed_channel/CHANNEL in news_network.network_channels) - dat+="[CHANNEL.channel_name] [(CHANNEL.censored) ? ("***") : null ]
" - dat+="
Cancel" + dat+="[CHANNEL.channel_name] [(CHANNEL.censored) ? ("***") : null ]
" + dat+="
Cancel" if(11) dat+="[global.using_map.company_name] D-Notice Handler
" dat+="A D-Notice is to be bestowed upon the channel if the handling Authority deems it as harmful for the [station_name()]'s" @@ -353,12 +353,12 @@ var/global/list/allCasters = list() //Global list that will contain reference to dat+="No feed channels found active...
" else for(var/datum/feed_channel/CHANNEL in news_network.network_channels) - dat+="[CHANNEL.channel_name] [(CHANNEL.censored) ? ("***") : null ]
" + dat+="[CHANNEL.channel_name] [(CHANNEL.censored) ? ("***") : null ]
" - dat+="
Back" + dat+="
Back" if(12) dat+="[src.viewing_channel.channel_name]: \[ created by: [src.viewing_channel.author] \]
" - dat+="[(src.viewing_channel.author=="\[REDACTED\]") ? ("Undo Author censorship") : ("Censor channel Author")]
" + dat+="[(src.viewing_channel.author=="\[REDACTED\]") ? ("Undo Author censorship") : ("Censor channel Author")]
" if( !length(src.viewing_channel.messages) ) @@ -366,11 +366,11 @@ var/global/list/allCasters = list() //Global list that will contain reference to else for(var/datum/feed_message/MESSAGE in src.viewing_channel.messages) dat+="-[MESSAGE.body]
\[[MESSAGE.message_type] by [MESSAGE.author]\]
" - dat+="[(MESSAGE.body == "\[REDACTED\]") ? ("Undo story censorship") : ("Censor story")] - [(MESSAGE.author == "\[REDACTED\]") ? ("Undo Author Censorship") : ("Censor message Author")]
" - dat+="
Back" + dat+="[(MESSAGE.body == "\[REDACTED\]") ? ("Undo story censorship") : ("Censor story")] - [(MESSAGE.author == "\[REDACTED\]") ? ("Undo Author Censorship") : ("Censor message Author")]
" + dat+="
Back" if(13) dat+="[src.viewing_channel.channel_name]: \[ created by: [src.viewing_channel.author] \]
" - dat+="Channel messages listed below. If you deem them dangerous to the [station_name()], you can Bestow a D-Notice upon the channel.
" + dat+="Channel messages listed below. If you deem them dangerous to the [station_name()], you can Bestow a D-Notice upon the channel.
" if(src.viewing_channel.censored) dat+="ATTENTION: This channel has been deemed as threatening to the welfare of the [station_name()], and marked with a [global.using_map.company_name] D-Notice.
" dat+="No further feed story additions are allowed while the D-Notice is in effect.

" @@ -381,7 +381,7 @@ var/global/list/allCasters = list() //Global list that will contain reference to for(var/datum/feed_message/MESSAGE in src.viewing_channel.messages) dat+="-[MESSAGE.body]
\[[MESSAGE.message_type] by [MESSAGE.author]\]
" - dat+="
Back" + dat+="
Back" if(14) dat+="Wanted Issue Handler:" var/wanted_already = 0 @@ -393,26 +393,26 @@ var/global/list/allCasters = list() //Global list that will contain reference to if(wanted_already) dat+="
A wanted issue is already in Feed Circulation. You can edit or cancel it below.
" dat+="
" - dat+="Criminal Name: [src.channel_name]
" - dat+="Description: [src.msg]
" + dat+="Criminal Name: [src.channel_name]
" + dat+="Description: [src.msg]
" dat+="Photo: " if(photo_data && photo_data.photo) send_rsc(usr, photo_data.photo.img, "tmp_photo.png") dat+="
" - dat+="
Delete Photo
" + dat+="
Delete Photo
" else - dat+="Attach Photo
" + dat+="Attach Photo
" if(wanted_already) dat+="Wanted Issue created by: [news_network.wanted_issue.backup_author]
" else dat+="Wanted Issue will be created under prosecutor: [src.scanned_user]
" - dat+="
[(wanted_already) ? ("Edit Issue") : ("Submit")]" + dat+="
[(wanted_already) ? ("Edit Issue") : ("Submit")]" if(wanted_already) - dat+="
Take down Issue" - dat+="
Cancel" + dat+="
Take down Issue" + dat+="
Cancel" if(15) dat+="Wanted issue for [src.channel_name] is now in Network Circulation.

" - dat+="
Return
" + dat+="
Return
" if(16) dat+="ERROR: Wanted Issue rejected by Network.

" if(src.channel_name=="" || src.channel_name == "\[REDACTED\]") @@ -421,10 +421,10 @@ var/global/list/allCasters = list() //Global list that will contain reference to dat+="Issue author unverified.
" if(src.msg == "" || src.msg == "\[REDACTED\]") dat+="Invalid description.
" - dat+="
Return
" + dat+="
Return
" if(17) dat+="Wanted Issue successfully deleted from Circulation
" - dat+="
Return
" + dat+="
Return
" if(18) dat+="-- STATIONWIDE WANTED ISSUE --
\[Submitted by: [news_network.wanted_issue.backup_author]\]
" dat+="Criminal: [news_network.wanted_issue.author]
" @@ -435,16 +435,16 @@ var/global/list/allCasters = list() //Global list that will contain reference to dat+="
" else dat+="None" - dat+="

Back
" + dat+="

Back
" if(19) dat+="Wanted issue for [src.channel_name] successfully edited.

" - dat+="
Return
" + dat+="
Return
" if(20) dat+="Printing successful. Please receive your newspaper from the bottom of the machine.

" - dat+="Return" + dat+="Return" if(21) dat+="Unable to print newspaper. Insufficient paper. Please notify maintenance personnel to refill machine storage.

" - dat+="Return" + dat+="Return" else dat+="I'm sorry to break your immersion. This shit's bugged. Report this bug to Agouri, polyxenitopalidou@gmail.com" @@ -783,7 +783,7 @@ var/global/list/allCasters = list() //Global list that will contain reference to dat+="" if(scribble_page==curr_page) dat+="
There is a small scribble near the end of this page... It reads: \"[src.scribble]\"" - dat+= "
" + dat+= "
" if(1) // X channel pages inbetween. for(var/datum/feed_channel/NP in src.news_content) src.pages++ //Let's get it right again. @@ -808,7 +808,7 @@ var/global/list/allCasters = list() //Global list that will contain reference to dat+="" if(scribble_page==curr_page) dat+="
There is a small scribble near the end of this page... It reads: \"[src.scribble]\"" - dat+= "

" + dat+= "

" if(2) //Last page for(var/datum/feed_channel/NP in src.news_content) src.pages++ @@ -826,7 +826,7 @@ var/global/list/allCasters = list() //Global list that will contain reference to dat+="Apart from some uninteresting Classified ads, there's nothing on this page..." if(scribble_page==curr_page) dat+="
There is a small scribble near the end of this page... It reads: \"[src.scribble]\"" - dat+= "
" + dat+= "
" dat+="

[src.curr_page+1]
" var/processed_dat = human_user.handle_reading_literacy(human_user, dat) diff --git a/code/game/machinery/pager.dm b/code/game/machinery/pager.dm index 87c740146b5..0777eb14361 100644 --- a/code/game/machinery/pager.dm +++ b/code/game/machinery/pager.dm @@ -35,7 +35,7 @@ if(world.time < last_paged + 5 SECONDS) return last_paged = world.time - var/paged = MS.send_to_department(department,"Department page to [location.proper_name] received. Take", "*page*") + var/paged = MS.send_to_department(department,"Department page to [location.proper_name] received. Take", "*page*") acknowledged = 0 if(paged) playsound(src, 'sound/machines/ping.ogg', 60) diff --git a/code/game/machinery/slide_projector.dm b/code/game/machinery/slide_projector.dm index 27735e730bd..de4cb556fb3 100644 --- a/code/game/machinery/slide_projector.dm +++ b/code/game/machinery/slide_projector.dm @@ -69,7 +69,7 @@ /obj/item/slide_projector/interact(mob/user) var/data = list() if(projection) - data += "Disable projector" + data += "Disable projector" else data += "Projector inactive" @@ -80,7 +80,7 @@ if(I == current_slide) table += "[I.name]SHOWING" else - table += "[I.name]SHOW" + table += "[I.name]SHOW" i++ data += jointext(table,null) var/datum/browser/popup = new(user, "slides\ref[src]", "Slide Projector") diff --git a/code/game/machinery/spaceheater.dm b/code/game/machinery/spaceheater.dm index 48bcdae71f1..67c1d4baafd 100644 --- a/code/game/machinery/spaceheater.dm +++ b/code/game/machinery/spaceheater.dm @@ -76,10 +76,10 @@ dat += "Set Temperature: " - dat += "-" + dat += "-" dat += " [set_temperature]K ([set_temperature-T0C]°C)" - dat += "+
" + dat += "+
" var/datum/browser/popup = new(usr, "spaceheater", "Space Heater Control Panel") popup.set_content(jointext(dat, null)) diff --git a/code/game/machinery/suit_cycler.dm b/code/game/machinery/suit_cycler.dm index 76abad87613..38847883dfa 100644 --- a/code/game/machinery/suit_cycler.dm +++ b/code/game/machinery/suit_cycler.dm @@ -299,26 +299,26 @@ else if(locked) dat += "
The [model_text ? "[model_text] " : ""]suit cycler is currently locked. Please contact your system administrator." if(allowed(user)) - dat += "
Unlock unit" + dat += "
Unlock unit" else dat += "

Suit cycler

" - dat += "Welcome to the [model_text ? "[model_text] " : ""]suit cycler control panel. Lock unit
" + dat += "Welcome to the [model_text ? "[model_text] " : ""]suit cycler control panel. Lock unit
" dat += "

Maintenance

" - dat += "Helmet: [helmet ? "\the [helmet]" : "no helmet stored" ]. Eject
" - dat += "Suit: [suit ? "\the [suit]" : "no suit stored" ]. Eject
" - dat += "Boots: [boots ? "\the [boots]" : "no boots stored" ]. Eject" + dat += "Helmet: [helmet ? "\the [helmet]" : "no helmet stored" ]. Eject
" + dat += "Suit: [suit ? "\the [suit]" : "no suit stored" ]. Eject
" + dat += "Boots: [boots ? "\the [boots]" : "no boots stored" ]. Eject" if(can_repair && istype(suit)) - dat += "[(suit.damage ? " Repair" : "")]" + dat += "[(suit.damage ? " Repair" : "")]" dat += "
UV decontamination systems: SYSTEM ERROR" : "green'>READY"]
" dat += "Output level: [radiation_level]
" - dat += "Select power level Begin decontamination cycle

" + dat += "Select power level Begin decontamination cycle

" dat += "

Customisation

" - dat += "Target product: [target_modification.name], [target_bodytype]." - dat += "
Apply customisation routine

" + dat += "Target product: [target_modification.name], [target_bodytype]." + dat += "
Apply customisation routine

" var/datum/browser/written_digital/popup = new(user, "suit_cycler", "Suit Cycler") popup.set_content(JOINTEXT(dat)) diff --git a/code/game/objects/effects/chem/chemsmoke.dm b/code/game/objects/effects/chem/chemsmoke.dm index 252ca37c2ec..27bffa2de76 100644 --- a/code/game/objects/effects/chem/chemsmoke.dm +++ b/code/game/objects/effects/chem/chemsmoke.dm @@ -135,7 +135,7 @@ var/area/A = get_area(location) var/where = "[A.proper_name] | [location.x], [location.y]" - var/whereLink = "[where]" + var/whereLink = "[where]" if(show_log) var/atom/location = carry?.get_reaction_loc(CHEM_REACTION_FLAG_OVERFLOW_CONTAINER) @@ -143,7 +143,7 @@ var/mob/M = get_mob_by_key(location.fingerprintslast) var/more = "" if(M) - more = "(?)" + more = "(?)" log_and_message_admins("A chemical smoke reaction has taken place in ([whereLink])[contained]. Last associated key is [location.fingerprintslast][more].") else log_and_message_admins("A chemical smoke reaction has taken place in ([whereLink]). No associated key.") diff --git a/code/game/objects/explosion.dm b/code/game/objects/explosion.dm index bef4e25c4d1..e99d8b05f67 100644 --- a/code/game/objects/explosion.dm +++ b/code/game/objects/explosion.dm @@ -49,7 +49,7 @@ M.playsound_local(epicenter, 'sound/effects/explosionfar.ogg', far_volume, 1, frequency, falloff = 5) if(adminlog) - log_and_message_admins("Explosion with size ([devastation_range], [heavy_impact_range], [light_impact_range]) in area [epicenter.loc.name] ([epicenter.x],[epicenter.y],[epicenter.z]) (JMP)") + log_and_message_admins("Explosion with size ([devastation_range], [heavy_impact_range], [light_impact_range]) in area [epicenter.loc.name] ([epicenter.x],[epicenter.y],[epicenter.z]) (JMP)") var/approximate_intensity = (devastation_range * 3) + (heavy_impact_range * 2) + light_impact_range // Large enough explosion. For performance reasons, powernets will be rebuilt manually diff --git a/code/game/objects/items/__item.dm b/code/game/objects/items/__item.dm index 051083b981d..7618ae80ae3 100644 --- a/code/game/objects/items/__item.dm +++ b/code/game/objects/items/__item.dm @@ -783,7 +783,7 @@ var/global/list/_item_blood_mask = icon('icons/effects/blood.dmi', "itemblood") /obj/item/proc/showoff(mob/user) for(var/mob/M in view(user)) if(!user.is_invisible_to(M)) - M.show_message("[user] holds up [src]. Take a closer look.", 1) + M.show_message("[user] holds up [src]. Take a closer look.", 1) /* For zooming with scope or binoculars. This is called from @@ -884,7 +884,7 @@ modules/mob/living/human/life.dm if you die, you will be zoomed out. . = "[html_icon(src)] [get_examine_name()]" var/ID = GetIdCard() if(ID) - . += " \[Look at ID\]" + . += " \[Look at ID\]" /obj/item/proc/on_active_hand() return diff --git a/code/game/objects/items/devices/boombox.dm b/code/game/objects/items/devices/boombox.dm index 9336d59c26a..bea0e3cac25 100644 --- a/code/game/objects/items/devices/boombox.dm +++ b/code/game/objects/items/devices/boombox.dm @@ -50,12 +50,12 @@ /obj/item/boombox/interact(var/mob/user) if(!CanPhysicallyInteract(user)) return - var/dat = "NEXT" - dat += "PREV" - dat += "PLAY" - dat += "STOP" - dat += "VOL -" - dat += "VOL +" + var/dat = "NEXT" + dat += "PREV" + dat += "PLAY" + dat += "STOP" + dat += "VOL -" + dat += "VOL +" var/datum/browser/popup = new(user, "boombox", "BOOMTASTIC 3000", 290, 110) popup.set_content(dat) popup.open() diff --git a/code/game/objects/items/devices/powersink.dm b/code/game/objects/items/devices/powersink.dm index e20296b8724..09c924a0733 100644 --- a/code/game/objects/items/devices/powersink.dm +++ b/code/game/objects/items/devices/powersink.dm @@ -105,7 +105,7 @@ SPAN_NOTICE("You activate \the [src]."), SPAN_ITALIC("You hear a click.") ) - message_admins("Power sink activated by [key_name_admin(user)] at (JMP)") + message_admins("Power sink activated by [key_name_admin(user)] at (JMP)") log_game("Power sink activated by [key_name(user)] at [get_area_name(src)]") set_mode(OPERATING) return TRUE diff --git a/code/game/objects/items/devices/scanners/_scanner.dm b/code/game/objects/items/devices/scanners/_scanner.dm index 0693f18a6ec..8496b049f86 100644 --- a/code/game/objects/items/devices/scanners/_scanner.dm +++ b/code/game/objects/items/devices/scanners/_scanner.dm @@ -29,7 +29,7 @@ popup.open() /obj/item/scanner/proc/get_header() - return "Print ReportClear data" + return "Print ReportClear data" /obj/item/scanner/proc/can_use(mob/user) if (user.incapacitated()) diff --git a/code/game/objects/items/devices/scanners/gas.dm b/code/game/objects/items/devices/scanners/gas.dm index a9311cc11aa..b4bc1705cf2 100644 --- a/code/game/objects/items/devices/scanners/gas.dm +++ b/code/game/objects/items/devices/scanners/gas.dm @@ -12,7 +12,7 @@ var/mode = DEFAULT_MODE /obj/item/scanner/gas/get_header() - return "[..()]Switch Mode" + return "[..()]Switch Mode" /obj/item/scanner/gas/OnTopic(var/user, var/list/href_list) ..() diff --git a/code/game/objects/items/devices/taperecorder.dm b/code/game/objects/items/devices/taperecorder.dm index 6139f3dd658..8170f78018f 100644 --- a/code/game/objects/items/devices/taperecorder.dm +++ b/code/game/objects/items/devices/taperecorder.dm @@ -461,7 +461,7 @@ var/list/output = list("
") for(var/i=1, i < timestamp.len, i++) var/time = "\[[time2text(timestamp[i]*10,"mm:ss")]\]" - output += "[time]
-----CUT------
" + output += "[time]
-----CUT------
" output += "
" var/datum/browser/popup = new(user, "tape_cutting", "Cutting tape", 170, 600) diff --git a/code/game/objects/items/devices/transfer_valve.dm b/code/game/objects/items/devices/transfer_valve.dm index f7a9d2432fe..03fb9ccd35b 100644 --- a/code/game/objects/items/devices/transfer_valve.dm +++ b/code/game/objects/items/devices/transfer_valve.dm @@ -28,7 +28,7 @@ tank_one = item else tank_two = item - message_admins("[key_name_admin(user)] attached both tanks to a transfer valve. (JMP)") + message_admins("[key_name_admin(user)] attached both tanks to a transfer valve. (JMP)") log_game("[key_name_admin(user)] attached both tanks to a transfer valve.") to_chat(user, "You attach the tank to the transfer valve.") @@ -58,7 +58,7 @@ A.toggle_secure() //this calls update_icon(), which calls update_icon() on the holder (i.e. the bomb). global.bombers += "[key_name(user)] attached a [item] to a transfer valve." - message_admins("[key_name_admin(user)] attached a [item] to a transfer valve. (JMP)") + message_admins("[key_name_admin(user)] attached a [item] to a transfer valve. (JMP)") log_game("[key_name_admin(user)] attached a [item] to a transfer valve.") attacher = user SSnano.update_uis(src) // update all UIs attached to src @@ -194,16 +194,16 @@ else attacher_name = "[attacher.name]([attacher.ckey])" - var/log_str = "Bomb valve opened in [A.proper_name] " + var/log_str = "Bomb valve opened in [A.proper_name] " log_str += "with [attached_device ? attached_device : "no device"] attacher: [attacher_name]" if(attacher) - log_str += "(?)" + log_str += "(?)" var/mob/mob = get_mob_by_key(src.fingerprintslast) var/last_touch_info = "" if(mob) - last_touch_info = "(?)" + last_touch_info = "(?)" log_str += " Last touched by: [src.fingerprintslast][last_touch_info]" global.bombers += log_str diff --git a/code/game/objects/items/devices/tvcamera.dm b/code/game/objects/items/devices/tvcamera.dm index 4e4d928ff4a..8e07bc60453 100644 --- a/code/game/objects/items/devices/tvcamera.dm +++ b/code/game/objects/items/devices/tvcamera.dm @@ -40,13 +40,13 @@ add_fingerprint(user) user.set_machine(src) var/dat = list() - dat += "Photography mode is currently: [turned_on ? "On" : "Off"]
" - dat += "Photography focus is currently: [field_of_view]
" - dat += "Channel name is: [channel ? channel : "unidentified broadcast"]
" - dat += "Video streaming is: [video_enabled ? "Online" : "Offline"]
" - dat += "Microphone is: [radio.broadcasting ? "Online" : "Offline"]
" + dat += "Photography mode is currently: [turned_on ? "On" : "Off"]
" + dat += "Photography focus is currently: [field_of_view]
" + dat += "Channel name is: [channel ? channel : "unidentified broadcast"]
" + dat += "Video streaming is: [video_enabled ? "Online" : "Offline"]
" + dat += "Microphone is: [radio.broadcasting ? "Online" : "Offline"]
" dat += "Sound is being broadcasted on frequency: [format_frequency(radio.frequency)]
" - dat += "Network Options" + dat += "Network Options" var/datum/browser/written_digital/popup = new(user, "Press Camera Drone", "EyeBuddy", 300, 390, src) popup.set_content(jointext(dat,null)) popup.open() diff --git a/code/game/objects/items/stacks/stack.dm b/code/game/objects/items/stacks/stack.dm index d8e90de2a89..42c0a126138 100644 --- a/code/game/objects/items/stacks/stack.dm +++ b/code/game/objects/items/stacks/stack.dm @@ -127,7 +127,7 @@ var/datum/stack_recipe_list/recipe_list = recipes if (istype(recipe_list)) popup_title = "Crafting [recipe_list.name] with \the [src]" - dat += "

Back

" + dat += "

Back

" recipes = recipe_list.recipes else if(islist(recipes) && length(recipes)) popup_title = "Crafting with \the [src]" diff --git a/code/game/objects/items/weapons/RPD.dm b/code/game/objects/items/weapons/RPD.dm index 551a70bb1eb..f376f6ca8a3 100644 --- a/code/game/objects/items/weapons/RPD.dm +++ b/code/game/objects/items/weapons/RPD.dm @@ -95,11 +95,11 @@ var/global/list/rpd_pipe_selection_skilled = list() . = list() . += "" if(color_options) - . += "" + . += "" for(var/category in pipe_categories) . += "" for(var/datum/fabricator_recipe/pipe/pipe in pipe_categories[category]) - . += "" + . += "" .+= "
Color[pipe_color]
Color[pipe_color]
[category]
[pipe.name][P.type == pipe.type ? "Select" : "Select"]
[pipe.name][P.type == pipe.type ? "Select" : "Select"]
" . = JOINTEXT(.) diff --git a/code/game/objects/items/weapons/grenades/grenade.dm b/code/game/objects/items/weapons/grenades/grenade.dm index 78c09ab8b61..763eb23c7d8 100644 --- a/code/game/objects/items/weapons/grenades/grenade.dm +++ b/code/game/objects/items/weapons/grenades/grenade.dm @@ -70,7 +70,7 @@ if(active) return if(user) - msg_admin_attack("[user.name] ([user.ckey]) primed \a [src] (JMP)") + msg_admin_attack("[user.name] ([user.ckey]) primed \a [src] (JMP)") active = TRUE update_icon() playsound(loc, arm_sound, 75, 0, -3) diff --git a/code/game/objects/items/weapons/implants/implantchair.dm b/code/game/objects/items/weapons/implants/implantchair.dm index bee3993f35a..38ad44810d1 100644 --- a/code/game/objects/items/weapons/implants/implantchair.dm +++ b/code/game/objects/items/weapons/implants/implantchair.dm @@ -39,9 +39,9 @@ var/dat ="Implanter Status
" dat +="Current occupant: [src.occupant ? "
Name: [src.occupant]
Health: [health_text]
" : "None"]
" - dat += "Implants: [src.implant_list.len ? "[implant_list.len]" : "Replenish"]
" + dat += "Implants: [src.implant_list.len ? "[implant_list.len]" : "Replenish"]
" if(src.occupant) - dat += "[src.ready ? "Implant" : "Recharging"]
" + dat += "[src.ready ? "Implant" : "Recharging"]
" user.set_machine(src) show_browser(user, dat, "window=implant") onclose(user, "implant") diff --git a/code/game/objects/items/weapons/implants/implants/explosive.dm b/code/game/objects/items/weapons/implants/implants/explosive.dm index fbfc602d928..44bd35c5236 100644 --- a/code/game/objects/items/weapons/implants/implants/explosive.dm +++ b/code/game/objects/items/weapons/implants/implants/explosive.dm @@ -120,10 +120,10 @@ playsound(loc, 'sound/items/countdown.ogg', 75, 1, -3) if(ismob(imp_in)) imp_in.audible_message("Something beeps inside [imp_in][part ? "'s [part.name]" : ""]!") - log_and_message_admins("Explosive implant triggered in [imp_in] ([imp_in.key]). (JMP) ") + log_and_message_admins("Explosive implant triggered in [imp_in] ([imp_in.key]). (JMP) ") else audible_message("[src] beeps omniously!") - log_and_message_admins("Explosive implant triggered in [T.loc]. (JMP) ") + log_and_message_admins("Explosive implant triggered in [T.loc]. (JMP) ") if(!elevel) elevel = "Full Explosion" diff --git a/code/game/objects/items/weapons/storage/med_pouch.dm b/code/game/objects/items/weapons/storage/med_pouch.dm index 00dc036406c..911e67d2ab9 100644 --- a/code/game/objects/items/weapons/storage/med_pouch.dm +++ b/code/game/objects/items/weapons/storage/med_pouch.dm @@ -40,7 +40,7 @@ Single Use Emergency Pouches /obj/item/med_pouch/examine(mob/user) . = ..() - to_chat(user, "Please read instructions before use.") + to_chat(user, "Please read instructions before use.") /obj/item/med_pouch/CanUseTopic() return STATUS_INTERACTIVE diff --git a/code/game/objects/items/weapons/teleportation.dm b/code/game/objects/items/weapons/teleportation.dm index e95ffde8b89..3762eec3f07 100644 --- a/code/game/objects/items/weapons/teleportation.dm +++ b/code/game/objects/items/weapons/teleportation.dm @@ -35,7 +35,7 @@ Frequency: + +
-Refresh"} +Refresh"} show_browser(user, dat, "window=radio") onclose(user, "radio") return diff --git a/code/game/objects/structures/safe.dm b/code/game/objects/structures/safe.dm index b1707bce25d..9f1c725a947 100644 --- a/code/game/objects/structures/safe.dm +++ b/code/game/objects/structures/safe.dm @@ -74,12 +74,12 @@ FLOOR SAFES user.set_machine(src) var/dat = "
" - dat += "[open ? "Close" : "Open"] [src] | - [dial * 5] +" + dat += "[open ? "Close" : "Open"] [src] | - [dial * 5] +" if(open) dat += "" for(var/i = contents.len, i>=1, i--) var/obj/item/P = contents[i] - dat += "" + dat += "" dat += "
[P.name]
[P.name]
" show_browser(user, "[name][dat]", "window=safe;size=350x300") return TRUE diff --git a/code/game/objects/structures/tank_dispenser.dm b/code/game/objects/structures/tank_dispenser.dm index 30effb0cb86..8e9e1635826 100644 --- a/code/game/objects/structures/tank_dispenser.dm +++ b/code/game/objects/structures/tank_dispenser.dm @@ -70,9 +70,9 @@ return ..() var/list/dat = list() var/oxycount = LAZYLEN(oxygen_tanks) - dat += "Oxygen tanks: [oxycount] - [oxycount ? "Dispense" : "empty"]
" + dat += "Oxygen tanks: [oxycount] - [oxycount ? "Dispense" : "empty"]
" var/hydrocount = LAZYLEN(hydrogen_tanks) - dat += "Hydrogen tanks: [hydrocount] - [hydrocount ? "Dispense" : "empty"]" + dat += "Hydrogen tanks: [hydrocount] - [hydrocount ? "Dispense" : "empty"]" var/datum/browser/popup = new(user, "window=tank_rack") popup.set_content(jointext(dat, "
")) popup.open() diff --git a/code/game/objects/structures/under_wardrobe.dm b/code/game/objects/structures/under_wardrobe.dm index 11ebfb66fde..2a4e6fa7253 100644 --- a/code/game/objects/structures/under_wardrobe.dm +++ b/code/game/objects/structures/under_wardrobe.dm @@ -52,7 +52,7 @@ dat += "You may claim [id ? length(global.underwear.categories) - LAZYACCESS(amount_of_underwear_by_id_card, id) : 0] more article\s this shift.

" dat += "Available Categories

" for(var/datum/category_group/underwear/UWC in global.underwear.categories) - dat += "[UWC.name] (Select)
" + dat += "[UWC.name] (Select)
" dat = jointext(dat,null) show_browser(H, dat, "window=wardrobe;size=400x250") diff --git a/code/game/verbs/who.dm b/code/game/verbs/who.dm index 18f3eede702..4131ea677ae 100644 --- a/code/game/verbs/who.dm +++ b/code/game/verbs/who.dm @@ -46,7 +46,7 @@ entry += " - Antagonist" if(C.is_afk()) entry += " (AFK - [C.inactivity2text()])" - entry += " (?)" + entry += " (?)" Lines += entry else for(var/client/C in global.clients) diff --git a/code/game/world_topic_commands.dm b/code/game/world_topic_commands.dm index 81101311f14..78a4319710c 100644 --- a/code/game/world_topic_commands.dm +++ b/code/game/world_topic_commands.dm @@ -319,8 +319,8 @@ var/global/list/decl/topic_command/topic_commands = list() if(rank == "Unknown") rank = "Staff" - var/message = SPAN_RED("[rank] PM from [params["sender"]]: [params["msg"]]") - var/amessage = SPAN_BLUE("[rank] PM from [params["sender"]] to [key_name(C)] : [params["msg"]]") + var/message = SPAN_RED("[rank] PM from [params["sender"]]: [params["msg"]]") + var/amessage = SPAN_BLUE("[rank] PM from [params["sender"]] to [key_name(C)] : [params["msg"]]") C.received_irc_pm = world.time C.irc_admin = params["sender"] diff --git a/code/modules/ZAS/Variable Settings.dm b/code/modules/ZAS/Variable Settings.dm index 06208e008b4..e53e6955c5b 100644 --- a/code/modules/ZAS/Variable Settings.dm +++ b/code/modules/ZAS/Variable Settings.dm @@ -111,7 +111,7 @@ var/global/vs_control/vsc = new vw = vars[ch] if("[ch]_DESC" in vars) vw_desc = vars["[ch]_DESC"] if("[ch]_NAME" in vars) vw_name = vars["[ch]_NAME"] - dat += "[vw_name] = [vw] \[Change\]
" + dat += "[vw_name] = [vw] \[Change\]
" dat += "[vw_desc]

" show_browser(user, dat, "window=settings") diff --git a/code/modules/admin/NewBan.dm b/code/modules/admin/NewBan.dm index 7f4ea462f4a..5f2e3c19cc6 100644 --- a/code/modules/admin/NewBan.dm +++ b/code/modules/admin/NewBan.dm @@ -189,7 +189,7 @@ var/global/savefile/Banlist if(!expiry) expiry = "Removal Pending" else expiry = "Permaban" - dat += text("(U)(E) Key: [key]ComputerID: [id]IP: [ip] [expiry](By: [by])(Reason: [reason])") + dat += text("(U)(E) Key: [key]ComputerID: [id]IP: [ip] [expiry](By: [by])(Reason: [reason])") dat += "" dat = "
Bans: (U) = Unban , (E) = Edit Ban - ([count] Bans)
[dat]" diff --git a/code/modules/admin/admin.dm b/code/modules/admin/admin.dm index d5cebeab272..000078e5a79 100644 --- a/code/modules/admin/admin.dm +++ b/code/modules/admin/admin.dm @@ -31,10 +31,10 @@ var/global/BSACooldown = 0 /proc/message_staff_fax(var/obj/item/paper/admin/fax, var/obj/machinery/faxmachine/destination, var/owner, var/dest_network_id = "UNKNOWN", var/dest_network_tag = "UNKNOWN") var/msg if(fax.sender) - msg = "FAX LOG:[key_name_admin(owner)] replied to a fax message from [key_name_admin(fax.sender)] (VIEW)" + msg = "FAX LOG:[key_name_admin(owner)] replied to a fax message from [key_name_admin(fax.sender)] (VIEW)" log_admin("[key_name(owner)] replied to a fax message from [key_name(fax.sender)]") else - msg = "FAX LOG:[key_name_admin(owner)] has sent a fax message to \the [get_area(fax)]'s [destination] ('[dest_network_id]'.'[dest_network_tag]')(VIEW)" + msg = "FAX LOG:[key_name_admin(owner)] has sent a fax message to \the [get_area(fax)]'s [destination] ('[dest_network_id]'.'[dest_network_tag]')(VIEW)" log_admin("[key_name(owner)] has sent a fax message to \the [get_area(fax)]'s [destination] ('[dest_network_id]'.'[dest_network_tag]')") for(var/client/C in global.admins) @@ -62,62 +62,62 @@ var/global/BSACooldown = 0 var/last_ckey = LAST_CKEY(M) if(M.client) body += " played by [M.client] " - body += "\[[M.client.holder ? M.client.holder.rank : "Player"]\]" + body += "\[[M.client.holder ? M.client.holder.rank : "Player"]\]" else if(last_ckey) body += " (last occupied by ckey [last_ckey])" if(isnewplayer(M)) body += " Hasn't Entered Game " else - body += " \[Heal\] " + body += " \[Heal\] " var/mob/living/exosuit/E = M if(istype(E) && E.pilots) body += "
Exosuit pilots:
" for(var/mob/living/pilot in E.pilots) body += "[pilot] " - body += " \[link\]
" + body += " \[link\]
" body += {"

\[ - View Vars - - Roles - - PM - - Narrate - + View Vars - + Roles - + PM - + Narrate - [admin_jump_link(M, src)]\]
Mob type: [M.type]
Inactivity time: [M.client ? "[M.client.inactivity/600] minutes" : "Logged out"]

- Kick | - Warn | - Ban | - Jobban | - Notes + Kick | + Warn | + Ban | + Jobban | + Notes "} if(M.client) - body += "| Prison | " + body += "| Prison | " var/muted = M.client.prefs.muted body += {"
Mute: - \[IC | - OOC | - AOOC | - PRAY | - ADMINHELP | - DEADCHAT\] - (toggle all) + \[IC | + OOC | + AOOC | + PRAY | + ADMINHELP | + DEADCHAT\] + (toggle all) "} body += "

Staff Warning: [M.client.staffwarn ? M.client.staffwarn : "No"]
" if (!M.client.staffwarn) - body += "Set StaffWarn" + body += "Set StaffWarn" else - body += "Remove StaffWarn" + body += "Remove StaffWarn" body += {"

- Jump to | - Get | - Send To + Jump to | + Get | + Send To

- [check_rights(R_INVESTIGATE,0) ? "Skill panel" : "" ] + [check_rights(R_INVESTIGATE,0) ? "Skill panel" : "" ] "} if(M.mind) @@ -126,7 +126,7 @@ var/global/BSACooldown = 0 body += "
" body += "[jointext(M.mind.summarize_goals(FALSE, TRUE, src), "
")]" body += "
" - body += "Add Random Goal" + body += "Add Random Goal" var/list/all_modpacks = decls_repository.get_decls_of_subtype(/decl/modpack) for(var/package in all_modpacks) @@ -146,28 +146,28 @@ var/global/BSACooldown = 0 if(issmall(M)) body += "Monkeyized | " else - body += "Monkeyize | " + body += "Monkeyize | " //Corgi if(iscorgi(M)) body += "Corgized | " else - body += "Corgize | " + body += "Corgize | " //AI / Cyborg if(isAI(M)) body += "Is an AI " else if(ishuman(M)) - body += {"Make AI | - Make Robot | - Make Alien + body += {"Make AI | + Make Robot | + Make Alien "} //Simple Animals if(isanimal(M)) - body += "Re-Animalize | " + body += "Re-Animalize | " else - body += "Animalize | " + body += "Animalize | " if(M.can_have_genetic_conditions()) body += "

" @@ -176,7 +176,7 @@ var/global/BSACooldown = 0 for(var/decl/genetic_condition/mutation as anything in decls_repository.get_decls_of_type_unassociated(/decl/genetic_condition)) if(i % 5 == 0) body += "" - body += "" + body += "" i++ body += "
[mutation.name][mutation.name]
" @@ -190,19 +190,19 @@ var/global/BSACooldown = 0 if(islist(transform_data)) var/list/href_subcat_strings = list() for(var/transform_string in transform_data) - href_subcat_strings += "[transform_string]" + href_subcat_strings += "[transform_string]" href_transform_strings += "\[ [href_string]: [jointext(href_subcat_strings, " | ")] \]" // It's a single mob type - link it directly. else if(ispath(transform_data)) - href_transform_strings += "[href_string]" + href_transform_strings += "[href_string]" body += jointext(href_transform_strings, " | ") body += {"

Other actions:
- Forcesay + Forcesay "} // language toggles body += "

Languages:
" @@ -216,9 +216,9 @@ var/global/BSACooldown = 0 else f = 0 if(L in M.languages) - body += "[L.name]" + body += "[L.name]" else - body += "[L.name]" + body += "[L.name]" body += {"
@@ -257,7 +257,7 @@ var/global/BSACooldown = 0 continue note_keys -= t - dat += "
Search term: [filter_term ? filter_term : "-----"]

" + dat += "
Search term: [filter_term ? filter_term : "-----"]

" if(!note_keys) dat += "No notes found." @@ -265,7 +265,7 @@ var/global/BSACooldown = 0 dat += "" note_keys = sortTim(note_keys, /proc/cmp_text_asc) for(var/t in note_keys) - dat += "" + dat += "" dat += "
[t]
[t]

" var/datum/browser/popup = new(usr, "player_notes", "Player Notes", 400, 400) @@ -318,12 +318,12 @@ var/global/BSACooldown = 0 update_file = 1 dat += "
  • [I.content] by [I.author] ([I.rank]) on [I.timestamp] " if(I.author == usr.key || I.author == "Adminbot" || ishost(usr)) - dat += "Remove" + dat += "Remove" dat += "
  • " if(update_file) direct_output(info, infos) - dat += "
    Add Comment
    " + dat += "
    Add Comment
    " var/html = {" @@ -378,12 +378,12 @@ var/global/BSACooldown = 0
    Note that this panel allows full freedom over the news network, there are no constrictions except the few basic ones. Don't break things! "} if(news_network.wanted_issue) - dat+= "
    Read Wanted Issue" + dat+= "
    Read Wanted Issue" - dat+= {"

    Create Feed Channel -
    View Feed Channels -
    Submit new Feed story -

    Exit + dat+= {"

    Create Feed Channel +
    View Feed Channels +
    Submit new Feed story +

    Exit "} var/wanted_already = 0 @@ -391,10 +391,10 @@ var/global/BSACooldown = 0 wanted_already = 1 dat+={"
    Feed Security functions:
    -
    [(wanted_already) ? ("Manage") : ("Publish")] \"Wanted\" Issue -
    Censor Feed Stories -
    Mark Feed Channel with [global.using_map.company_name] D-Notice (disables and locks the channel. -

    The newscaster recognises you as:
    [src.admincaster_signature]
    +
    [(wanted_already) ? ("Manage") : ("Publish")] \"Wanted\" Issue +
    Censor Feed Stories +
    Mark Feed Channel with [global.using_map.company_name] D-Notice (disables and locks the channel. +

    The newscaster recognises you as:
    [src.admincaster_signature]
    "} if(1) dat+= "Feed Channels
    " @@ -403,38 +403,38 @@ var/global/BSACooldown = 0 else for(var/datum/feed_channel/CHANNEL in news_network.network_channels) if(CHANNEL.is_admin_channel) - dat+="[CHANNEL.channel_name]
    " + dat+="[CHANNEL.channel_name]
    " else - dat+="[CHANNEL.channel_name] [(CHANNEL.censored) ? ("***") : null ]
    " - dat+={"

    Refresh -
    Back + dat+="[CHANNEL.channel_name] [(CHANNEL.censored) ? ("***") : null ]
    " + dat+={"

    Refresh +
    Back "} if(2) dat+={" Creating new Feed Channel... -
    Channel Name: [src.admincaster_feed_channel.channel_name]
    - Channel Author: [src.admincaster_signature]
    - Will Accept Public Feeds: [(src.admincaster_feed_channel.locked) ? ("NO") : ("YES")]

    -
    Submit

    Cancel
    +
    Channel Name: [src.admincaster_feed_channel.channel_name]
    + Channel Author: [src.admincaster_signature]
    + Will Accept Public Feeds: [(src.admincaster_feed_channel.locked) ? ("NO") : ("YES")]

    +
    Submit

    Cancel
    "} if(3) dat+={" Creating new Feed Message... -
    Receiving Channel: [src.admincaster_feed_channel.channel_name]
    " //MARK +
    Receiving Channel: [src.admincaster_feed_channel.channel_name]
    " //MARK Message Author: [src.admincaster_signature]
    - Message Body: [src.admincaster_feed_message.body]
    -
    Submit

    Cancel
    + Message Body: [src.admincaster_feed_message.body]
    +
    Submit

    Cancel
    "} if(4) dat+={" Feed story successfully submitted to [src.admincaster_feed_channel.channel_name].

    -
    Return
    +
    Return
    "} if(5) dat+={" Feed Channel [src.admincaster_feed_channel.channel_name] created successfully.

    -
    Return
    +
    Return
    "} if(6) dat+="ERROR: Could not submit Feed story to Network.

    " @@ -442,7 +442,7 @@ var/global/BSACooldown = 0 dat+="Invalid receiving channel name.
    " if(src.admincaster_feed_message.body == "" || src.admincaster_feed_message.body == "\[REDACTED\]") dat+="Invalid message body.
    " - dat+="
    Return
    " + dat+="
    Return
    " if(7) dat+="ERROR: Could not submit Feed Channel to Network.

    " if(src.admincaster_feed_channel.channel_name =="" || src.admincaster_feed_channel.channel_name == "\[REDACTED\]") @@ -454,7 +454,7 @@ var/global/BSACooldown = 0 break if(check) dat+="Channel name already in use.
    " - dat+="
    Return
    " + dat+="
    Return
    " if(9) dat+="[src.admincaster_feed_channel.channel_name]: \[created by: [src.admincaster_feed_channel.author]\]
    " if(src.admincaster_feed_channel.censored) @@ -475,8 +475,8 @@ var/global/BSACooldown = 0 dat+="

    " dat+="\[Story by [MESSAGE.author]\]
    " dat+={" -

    Refresh -
    Back +

    Refresh +
    Back "} if(10) dat+={" @@ -489,8 +489,8 @@ var/global/BSACooldown = 0 dat+="No feed channels found active...
    " else for(var/datum/feed_channel/CHANNEL in news_network.network_channels) - dat+="[CHANNEL.channel_name] [(CHANNEL.censored) ? ("***") : null ]
    " - dat+="
    Cancel" + dat+="[CHANNEL.channel_name] [(CHANNEL.censored) ? ("***") : null ]
    " + dat+="
    Cancel" if(11) dat+={" [global.using_map.company_name] D-Notice Handler
    @@ -502,13 +502,13 @@ var/global/BSACooldown = 0 dat+="No feed channels found active...
    " else for(var/datum/feed_channel/CHANNEL in news_network.network_channels) - dat+="[CHANNEL.channel_name] [(CHANNEL.censored) ? ("***") : null ]
    " + dat+="[CHANNEL.channel_name] [(CHANNEL.censored) ? ("***") : null ]
    " - dat+="
    Back" + dat+="
    Back" if(12) dat+={" [src.admincaster_feed_channel.channel_name]: \[ created by: [src.admincaster_feed_channel.author] \]
    - [(src.admincaster_feed_channel.author=="\[REDACTED\]") ? ("Undo Author censorship") : ("Censor channel Author")]
    + [(src.admincaster_feed_channel.author=="\[REDACTED\]") ? ("Undo Author censorship") : ("Censor channel Author")]
    "} if( !length(src.admincaster_feed_channel.messages) ) dat+="No feed messages found in channel...
    " @@ -516,13 +516,13 @@ var/global/BSACooldown = 0 for(var/datum/feed_message/MESSAGE in src.admincaster_feed_channel.messages) dat+={" -[MESSAGE.body]
    \[Story by [MESSAGE.author]\]
    - [(MESSAGE.body == "\[REDACTED\]") ? ("Undo story censorship") : ("Censor story")] - [(MESSAGE.author == "\[REDACTED\]") ? ("Undo Author Censorship") : ("Censor message Author")]
    + [(MESSAGE.body == "\[REDACTED\]") ? ("Undo story censorship") : ("Censor story")] - [(MESSAGE.author == "\[REDACTED\]") ? ("Undo Author Censorship") : ("Censor message Author")]
    "} - dat+="
    Back" + dat+="
    Back" if(13) dat+={" [src.admincaster_feed_channel.channel_name]: \[ created by: [src.admincaster_feed_channel.author] \]
    - Channel messages listed below. If you deem them dangerous to the [station_name()], you can Bestow a D-Notice upon the channel.
    + Channel messages listed below. If you deem them dangerous to the [station_name()], you can Bestow a D-Notice upon the channel.
    "} if(src.admincaster_feed_channel.censored) dat+={" @@ -536,7 +536,7 @@ var/global/BSACooldown = 0 for(var/datum/feed_message/MESSAGE in src.admincaster_feed_channel.messages) dat+="-[MESSAGE.body]
    \[Story by [MESSAGE.author]\]
    " - dat+="
    Back" + dat+="
    Back" if(14) dat+="Wanted Issue Handler:" var/wanted_already = 0 @@ -548,21 +548,21 @@ var/global/BSACooldown = 0 dat+="
    A wanted issue is already in Feed Circulation. You can edit or cancel it below.
    " dat+={"
    - Criminal Name: [src.admincaster_feed_message.author]
    - Description: [src.admincaster_feed_message.body]
    + Criminal Name: [src.admincaster_feed_message.author]
    + Description: [src.admincaster_feed_message.body]
    "} if(wanted_already) dat+="Wanted Issue created by: [news_network.wanted_issue.backup_author]
    " else dat+="Wanted Issue will be created under prosecutor: [src.admincaster_signature]
    " - dat+="
    [(wanted_already) ? ("Edit Issue") : ("Submit")]" + dat+="
    [(wanted_already) ? ("Edit Issue") : ("Submit")]" if(wanted_already) - dat+="
    Take down Issue" - dat+="
    Cancel" + dat+="
    Take down Issue" + dat+="
    Cancel" if(15) dat+={" Wanted issue for [src.admincaster_feed_message.author] is now in Network Circulation.

    -
    Return
    +
    Return
    "} if(16) dat+="ERROR: Wanted Issue rejected by Network.

    " @@ -570,11 +570,11 @@ var/global/BSACooldown = 0 dat+="Invalid name for person wanted.
    " if(src.admincaster_feed_message.body == "" || src.admincaster_feed_message.body == "\[REDACTED\]") dat+="Invalid description.
    " - dat+="
    Return
    " + dat+="
    Return
    " if(17) dat+={" Wanted Issue successfully deleted from Circulation
    -
    Return
    +
    Return
    "} if(18) dat+={" @@ -588,11 +588,11 @@ var/global/BSACooldown = 0 dat+="
    " else dat+="None" - dat+="
    Back
    " + dat+="
    Back
    " if(19) dat+={" Wanted issue for [src.admincaster_feed_message.author] successfully edited.

    -
    Return
    +
    Return
    "} else dat+="I'm sorry to break your immersion. This shit's bugged. Report this bug to Agouri, polyxenitopalidou@gmail.com" @@ -613,7 +613,7 @@ var/global/BSACooldown = 0 var/r = t if( findtext(r,"##") ) r = copytext( r, 1, findtext(r,"##") )//removes the description - dat += text("[t] (unban)") + dat += text("[t] (unban)") dat += "" show_browser(usr, dat, "window=ban;size=400x400") @@ -622,20 +622,20 @@ var/global/BSACooldown = 0 var/dat = {"
    Game Panel

    \n - Change Game Mode
    + Change Game Mode
    "} if(SSticker.master_mode == "secret") - dat += "(Force Secret Mode)
    " + dat += "(Force Secret Mode)
    " dat += {"
    - Create Object
    - Quick Create Object
    - Create Turf
    - Create Mob
    -
    Edit Airflow Settings
    - Edit Contaminant Settings
    - Choose a default ZAS setting
    + Create Object
    + Quick Create Object
    + Create Turf
    + Create Mob
    +
    Edit Airflow Settings
    + Edit Contaminant Settings
    + Choose a default ZAS setting
    "} show_browser(usr, dat, "window=admin2;size=210x280") @@ -652,7 +652,7 @@ var/global/BSACooldown = 0 if(active_category == category) dat += "[category.name]" else - dat += "[category.name] " + dat += "[category.name] " dat += "
    " // If a category is selected, print its description and then options @@ -662,7 +662,7 @@ var/global/BSACooldown = 0 for(var/datum/admin_secret_item/item in active_category.items) if(!item.can_view(usr)) continue - dat += "[item.name()]
    " + dat += "[item.name()]
    " dat += "
    " var/datum/browser/popup = new(usr, "secrets", "Secrets", 550, 500) @@ -1152,38 +1152,38 @@ var/global/BSACooldown = 0 alert("Not before roundstart!", "Alert") return - var/out = "Current mode: [SSticker.mode.name] ([SSticker.mode.uid])
    " + var/out = "Current mode: [SSticker.mode.name] ([SSticker.mode.uid])
    " out += "
    " if(SSticker.mode.ert_disabled) - out += "Emergency Response Teams: disabled" + out += "Emergency Response Teams: disabled" else - out += "Emergency Response Teams: enabled" + out += "Emergency Response Teams: enabled" out += "
    " if(SSticker.mode.deny_respawn) - out += "Respawning: disallowed" + out += "Respawning: disallowed" else - out += "Respawning: allowed" + out += "Respawning: allowed" out += "
    " - out += "Shuttle delay multiplier: [SSticker.mode.shuttle_delay]
    " + out += "Shuttle delay multiplier: [SSticker.mode.shuttle_delay]
    " if(SSticker.mode.auto_recall_shuttle) - out += "Shuttle auto-recall: enabled" + out += "Shuttle auto-recall: enabled" else - out += "Shuttle auto-recall: disabled" + out += "Shuttle auto-recall: disabled" out += "

    " if(SSticker.mode.event_delay_mod_moderate) - out += "Moderate event time modifier: [SSticker.mode.event_delay_mod_moderate]
    " + out += "Moderate event time modifier: [SSticker.mode.event_delay_mod_moderate]
    " else - out += "Moderate event time modifier: unset
    " + out += "Moderate event time modifier: unset
    " if(SSticker.mode.event_delay_mod_major) - out += "Major event time modifier: [SSticker.mode.event_delay_mod_major]
    " + out += "Major event time modifier: [SSticker.mode.event_delay_mod_major]
    " else - out += "Major event time modifier: unset
    " + out += "Major event time modifier: unset
    " out += "
    " @@ -1192,28 +1192,28 @@ var/global/BSACooldown = 0 for(var/antag_type in SSticker.mode.associated_antags) var/decl/special_role/antag = GET_DECL(antag_type) if(antag) - out += "[antag.name].
    " + out += "[antag.name].
    " if(SSticker.mode.round_autoantag) - out += "Autotraitor enabled." + out += "Autotraitor enabled." if(SSticker.mode.antag_scaling_coeff > 0) - out += " (scaling with [SSticker.mode.antag_scaling_coeff])" + out += " (scaling with [SSticker.mode.antag_scaling_coeff])" else - out += " (not currently scaling, set a coefficient)" + out += " (not currently scaling, set a coefficient)" out += "
    " else - out += "Autotraitor disabled.
    " + out += "Autotraitor disabled.
    " out += "All antag ids:" if(SSticker.mode.antag_templates && SSticker.mode.antag_templates.len) for(var/decl/special_role/antag in SSticker.mode.antag_templates) antag.update_current_antag_max(SSticker.mode) - out += " [antag.name]" + out += " [antag.name]" out += " ([antag.get_antag_count()]/[antag.cur_max]) " - out += " \[-\]
    " + out += " \[-\]
    " else out += " None." - out += " \[+\]
    " + out += " \[+\]
    " show_browser(usr, out, "window=edit_mode[src]") SSstatistics.add_field_details("admin_verb","SGM") @@ -1303,15 +1303,15 @@ var/global/BSACooldown = 0 return "[key_name(C, link, name, highlight_special, ticket)]" if(1) //Private Messages - return "[key_name(C, link, name, highlight_special, ticket)](?)" + return "[key_name(C, link, name, highlight_special, ticket)](?)" if(2) //Admins var/ref_mob = "\ref[M]" - return "[key_name(C, link, name, highlight_special, ticket)](?) (PP) (VV) (DN) ([admin_jump_link(M)]) (RS)" + return "[key_name(C, link, name, highlight_special, ticket)](?) (PP) (VV) (DN) ([admin_jump_link(M)]) (RS)" if(3) //Devs var/ref_mob = "\ref[M]" - return "[key_name(C, link, name, highlight_special, ticket)](VV)([admin_jump_link(M)])" + return "[key_name(C, link, name, highlight_special, ticket)](VV)([admin_jump_link(M)])" /proc/ishost(var/client/C) return check_rights(R_HOST, 0, C) @@ -1440,7 +1440,7 @@ var/global/BSACooldown = 0 if(!N || !CN) continue var/area/A = get_area(F) - html += "
  • [CN.network_id].[N.network_tag] [A? "([A])" : ""]
  • " + html += "
  • [CN.network_id].[N.network_tag] [A? "([A])" : ""]
  • " html = "
      [html]
    " html = "
    [html]" show_browser(user, html, "size=512x800;window=faxpicker;title=") diff --git a/code/modules/admin/admin_attack_log.dm b/code/modules/admin/admin_attack_log.dm index 9b5c377c7cb..4affd41b31d 100644 --- a/code/modules/admin/admin_attack_log.dm +++ b/code/modules/admin/admin_attack_log.dm @@ -114,7 +114,7 @@ /proc/append_admin_tools(var/message, var/mob, var/turf/location) if(location) - message = message + " (LOC)" + message = message + " (LOC)" if(mob) - message = message + " (MOB)" + message = message + " (MOB)" return message diff --git a/code/modules/admin/dbban/functions.dm b/code/modules/admin/dbban/functions.dm index 6580398d8e3..fc8594d64e7 100644 --- a/code/modules/admin/dbban/functions.dm +++ b/code/modules/admin/dbban/functions.dm @@ -321,7 +321,7 @@ output += "" - output += "
    Add custom ban: (ONLY use this if you can't ban through any other method)" + output += "Add custom ban: (ONLY use this if you can't ban through any other method)" output += "" output += "" output += "" output += "
    Ban type:
    " - output += " @@ -288,14 +288,14 @@ if(SSevac.evacuation_controller) if (SSevac.evacuation_controller.is_idle()) - dat += "Call Evacuation
    " + dat += "Call Evacuation
    " else var/timeleft = SSevac.evacuation_controller.get_eta() if (SSevac.evacuation_controller.waiting_to_leave()) dat += "ETA: [(timeleft / 60) % 60]:[add_zero(num2text(timeleft % 60), 2)]
    " - dat += "Send Back
    " + dat += "Send Back
    " - dat += "[SSticker.delay_end ? "End Round Normally" : "Delay Round End"]
    " + dat += "[SSticker.delay_end ? "End Round Normally" : "Delay Round End"]
    " dat += "
    " var/list/all_antag_types = decls_repository.get_decls_of_subtype(/decl/special_role) for(var/antag_type in all_antag_types) diff --git a/code/modules/admin/secrets/admin_secrets/jump_shuttle.dm b/code/modules/admin/secrets/admin_secrets/jump_shuttle.dm index 9e39946a9e0..112a28de7b8 100644 --- a/code/modules/admin/secrets/admin_secrets/jump_shuttle.dm +++ b/code/modules/admin/secrets/admin_secrets/jump_shuttle.dm @@ -29,7 +29,7 @@ var/move_duration = input(user, "How many seconds will this jump take?") as num S.long_jump(destination, transition, move_duration) - log_and_message_admins("has initiated a jump to [destination] (JMP) lasting [move_duration] seconds in transit at [transition] (JMP) for the [shuttle_tag] shuttle") + log_and_message_admins("has initiated a jump to [destination] (JMP) lasting [move_duration] seconds in transit at [transition] (JMP) for the [shuttle_tag] shuttle") else S.short_jump(destination) - log_and_message_admins("has initiated a jump to [destination] (JMP) for the [shuttle_tag] shuttle") + log_and_message_admins("has initiated a jump to [destination] (JMP) for the [shuttle_tag] shuttle") diff --git a/code/modules/admin/secrets/admin_secrets/move_shuttle.dm b/code/modules/admin/secrets/admin_secrets/move_shuttle.dm index bdf27f6a85e..585b6ab090f 100644 --- a/code/modules/admin/secrets/admin_secrets/move_shuttle.dm +++ b/code/modules/admin/secrets/admin_secrets/move_shuttle.dm @@ -26,4 +26,4 @@ if (!destination) return S.attempt_move(destination) - log_and_message_admins("moved the [shuttle_tag] shuttle to [destination] (JMP)", user) + log_and_message_admins("moved the [shuttle_tag] shuttle to [destination] (JMP)", user) diff --git a/code/modules/admin/secrets/investigation/admin_pms.dm b/code/modules/admin/secrets/investigation/admin_pms.dm index 45fe20ff208..cd57bf73283 100644 --- a/code/modules/admin/secrets/investigation/admin_pms.dm +++ b/code/modules/admin/secrets/investigation/admin_pms.dm @@ -6,9 +6,9 @@ if(!.) return var/dat = list() - dat += "Refresh Filtering on: " + dat += "Refresh Filtering on: " if(filter) - dat += " [filter] Clear" + dat += " [filter] Clear" else dat += "None" dat += "
    " @@ -23,9 +23,9 @@ continue if(receiver) - dat += "" + dat += "" else - dat += "" + dat += "" dat += "" dat += "
    Search:" + output += "" output += "" output += "" diff --git a/code/modules/admin/permissionverbs/permissionedit.dm b/code/modules/admin/permissionverbs/permissionedit.dm index add6b917af5..dde03a14e37 100644 --- a/code/modules/admin/permissionverbs/permissionedit.dm +++ b/code/modules/admin/permissionverbs/permissionedit.dm @@ -18,7 +18,7 @@
    Search:" output += "
    Ckey: Admin ckey:
    - + "} @@ -31,9 +31,9 @@ if(!rights) rights = "*none*" output += "" - output += "" - output += "" - output += "" + output += "" + output += "" + output += "" output += "" output += {" diff --git a/code/modules/admin/player_panel.dm b/code/modules/admin/player_panel.dm index 0cb37e12e0f..649c4b54265 100644 --- a/code/modules/admin/player_panel.dm +++ b/code/modules/admin/player_panel.dm @@ -75,15 +75,15 @@ body += "
    CKEY \[+\]CKEY \[+\] RANKPERMISSIONS
    [adm_ckey] \[-\][rank][rights][adm_ckey] \[-\][rank][rights]
    "; - body += "Player Panel - " - body += "Notes - " - body += "View Vars - " - body += "Special Roles - " - body += "Send PM - " - body += "Direct Narrate - " - body += "Jump To
    " + body += "Player Panel - " + body += "Notes - " + body += "View Vars - " + body += "Special Roles - " + body += "Send PM - " + body += "Direct Narrate - " + body += "Jump To
    " if(antagonist > 0) - body += "Antagonist"; + body += "Antagonist"; body += "
    "; @@ -194,7 +194,7 @@
    Player panel
    - Hover over a line to see more information, or click here to check round info. + Hover over a line to see more information, or click here to check round info.

    [pm.station_time][sender.key_name(FALSE)] F[receiver.key_name(FALSE)] F
    [pm.station_time][sender.key_name(FALSE)] F[receiver.key_name(FALSE)] F
    [pm.station_time][sender.key_name(FALSE)] F
    [pm.station_time][sender.key_name(FALSE)] F
    [pm.message]
    " diff --git a/code/modules/admin/secrets/investigation/attack_logs.dm b/code/modules/admin/secrets/investigation/attack_logs.dm index f9d2f405aad..201adaa00bf 100644 --- a/code/modules/admin/secrets/investigation/attack_logs.dm +++ b/code/modules/admin/secrets/investigation/attack_logs.dm @@ -11,9 +11,9 @@ if(!.) return var/dat = list() - dat += "Refresh | " + dat += "Refresh | " dat += get_filter_html(user) - dat += " | Reset" + dat += " | Reset" dat += "
    " dat += "" dat += "" @@ -26,7 +26,7 @@ dat += "" if(al.attacker) - dat += "" + dat += "" else dat += "" @@ -35,14 +35,14 @@ dat += "" if(al.victim) - dat += "" + dat += "" else dat += "" dat += "" dat += "" dat += "
    TimeAttackerIntentZone SelVictim
    [al.station_time][al.attacker.key_name(check_if_offline = FALSE)] PP[al.attacker.key_name(check_if_offline = FALSE)] PP[al.target_zone][al.victim.key_name(check_if_offline = FALSE)] PP[al.victim.key_name(check_if_offline = FALSE)] PP
    [al.message]" if(al.location) - dat += " JMP" + dat += " JMP" dat += "
    " @@ -132,9 +132,9 @@ . = list() . += "Must have clients: " if(filter_missing_clients) - . += "YesNo" + . += "YesNo" else - . += "YesNo" + . += "YesNo" . = jointext(.,null) /attack_filter/no_client/OnTopic(href_list) @@ -170,7 +170,7 @@ ckey_filter = null /attack_filter/must_be_given_ckey/get_html() - return "[description]: [ckey_filter ? ckey_filter : "*ANY*"]" + return "[description]: [ckey_filter ? ckey_filter : "*ANY*"]" /attack_filter/must_be_given_ckey/OnTopic(href_list) if(!href_list["select_ckey"]) diff --git a/code/modules/admin/ticket.dm b/code/modules/admin/ticket.dm index d394a86cd0c..526c9867927 100644 --- a/code/modules/admin/ticket.dm +++ b/code/modules/admin/ticket.dm @@ -195,7 +195,7 @@ var/global/list/ticket_panels = list() var/ref_mob = "" if(owner_client) ref_mob = "\ref[owner_client.mob]" - ticket_dat += " - ? - PP - VV - DN[owner_client ? "- [admin_jump_link(owner_client, src)]" : ""]" + ticket_dat += " - ? - PP - VV - DN[owner_client ? "- [admin_jump_link(owner_client, src)]" : ""]" if(open_ticket && open_ticket == ticket) ticket_dat += "" ticket_dat += "" diff --git a/code/modules/admin/topic.dm b/code/modules/admin/topic.dm index 18a05a3d3cf..4d6ab441d57 100644 --- a/code/modules/admin/topic.dm +++ b/code/modules/admin/topic.dm @@ -331,16 +331,16 @@ var/decl/department/dept = all_departments[dtype] var/list/print_jobs = SSjobs.titles_by_department(dtype) jobs += "" - jobs += "" + jobs += "" for(var/jobPos in print_jobs) var/datum/job/job = SSjobs.get_by_title(jobPos) if(!job) continue if(jobban_isbanned(M, job.title)) - jobs += "" + jobs += "" counter++ else - jobs += "" + jobs += "" counter++ if(counter >= MAX_JOBBAN_CELLS) jobs += "" @@ -350,20 +350,20 @@ // Other non-human bans. counter = 0 jobs += "
    [capitalize(dept.name)] Positions
    [capitalize(dept.name)] Positions
    [replacetext(job.title, " ", " ")][replacetext(job.title, " ", " ")][replacetext(job.title, " ", " ")][replacetext(job.title, " ", " ")]
    " - jobs += "" + jobs += "" if(jobban_isbanned(M, "pAI")) - jobs += "" + jobs += "" else - jobs += "" + jobs += "" if(jobban_isbanned(M, "AntagHUD")) - jobs += "" + jobs += "" else - jobs += "" + jobs += "" jobs += "
    Other Positions
    Other Positions
    pAIpAIpAIpAIAntagHUDAntagHUDAntagHUDAntagHUD
    " //Antagonist (Orange) jobs += "" - jobs += "" + jobs += "" // Antagonists. #define ANTAG_COLUMNS 5 @@ -374,9 +374,9 @@ if(!antag) continue if(jobban_isbanned(M, antag.type)) - jobs += "" + jobs += "" else - jobs += "" + jobs += "" if(i % ANTAG_COLUMNS == 0 && i < length(all_antag_types)) jobs += "" i++ @@ -389,9 +389,9 @@ jobs += "" for(var/entry in misc_roles) if(jobban_isbanned(M, entry)) - jobs += "" + jobs += "" else - jobs += "" + jobs += "" jobs += "
    Antagonist Positions
    Antagonist Positions
    [replacetext("[antag.name]", " ", " ")][replacetext("[antag.name]", " ", " ")][replacetext("[antag.name]", " ", " ")][replacetext("[antag.name]", " ", " ")]
    Other Roles
    [entry][entry][entry][entry]
    " // Channels @@ -401,9 +401,9 @@ for(var/channel_type in channels) var/decl/communication_channel/channel = channels[channel_type] if(jobban_isbanned(M, channel.name)) - jobs += "[channel.name]" + jobs += "[channel.name]" else - jobs += "[channel.name]" + jobs += "[channel.name]" jobs += "" // Finalize and display. @@ -690,9 +690,9 @@ var/dat = {"What mode do you wish to play?
    "} var/list/mode_names = get_config_value(/decl/config/lists/mode_names) for(var/mode in get_config_value(/decl/config/lists/mode_allowed)) - dat += {"[mode_names[mode]]
    "} - dat += {"Secret
    "} - dat += {"Random
    "} + dat += {"[mode_names[mode]]
    "} + dat += {"Secret
    "} + dat += {"Random
    "} dat += {"Now: [SSticker.master_mode]"} show_browser(usr, dat, "window=c_mode") @@ -706,8 +706,8 @@ var/dat = {"What game mode do you want to force secret to be? Use this if you want to change the game mode, but want the players to believe it's secret. This will only work if the current game mode is secret.
    "} var/list/mode_names = get_config_value(/decl/config/lists/mode_names) for(var/mode in get_config_value(/decl/config/lists/mode_allowed)) - dat += {"[mode_names[mode]]
    "} - dat += {"Random (default)
    "} + dat += {"[mode_names[mode]]
    "} + dat += {"Random (default)
    "} dat += {"Now: [secret_force_mode]"} show_browser(usr, dat, "window=f_secret") @@ -930,7 +930,7 @@ to_chat(src.owner, "Name = [M.name]; Real_name = [M.real_name]; Mind_name = [M.mind?"[M.mind.name]":""]; Key = [M.key];") to_chat(src.owner, "Location = [location_description];") to_chat(src.owner, "[special_role_description]") - to_chat(src.owner, "(PM) (PP) (VV) ([admin_jump_link(M, src)]) (RS)") + to_chat(src.owner, "(PM) (PP) (VV) ([admin_jump_link(M, src)]) (RS)") else if(href_list["adminspawnprayreward"]) if(!check_rights(R_ADMIN|R_FUN)) return @@ -1052,7 +1052,7 @@ for (var/page = 1, page <= B.pages.len, page++) var/obj/pageobj = B.pages[page] - data += "Page [page] - [pageobj.name]
    " + data += "Page [page] - [pageobj.name]
    " show_browser(usr, data, "window=[B.name]") else @@ -1617,7 +1617,7 @@ return list() /atom/movable/extra_admin_link(var/source, var/prefix, var/sufix, var/short_links) - return list("[prefix][short_links ? "J" : "JMP"][sufix]") + return list("[prefix][short_links ? "J" : "JMP"][sufix]") /client/extra_admin_link(source, var/prefix, var/sufix, var/short_links) return mob ? mob.extra_admin_link(source, prefix, sufix, short_links) : list() @@ -1625,12 +1625,12 @@ /mob/extra_admin_link(var/source, var/prefix, var/sufix, var/short_links) . = ..() if(client && eyeobj) - . += "[prefix][short_links ? "E" : "EYE"][sufix]" + . += "[prefix][short_links ? "E" : "EYE"][sufix]" /mob/observer/ghost/extra_admin_link(var/source, var/prefix, var/sufix, var/short_links) . = ..() if(mind && (mind.current && !isghost(mind.current))) - . += "[prefix][short_links ? "B" : "BDY"][sufix]" + . += "[prefix][short_links ? "B" : "BDY"][sufix]" /proc/admin_jump_link(var/datum/target, var/source, var/delimiter = "|", var/prefix, var/sufix, var/short_links) if(!istype(target)) diff --git a/code/modules/admin/verbs/SDQL.dm b/code/modules/admin/verbs/SDQL.dm index 6f99308597f..a67da780ff0 100644 --- a/code/modules/admin/verbs/SDQL.dm +++ b/code/modules/admin/verbs/SDQL.dm @@ -323,16 +323,16 @@ var/atom/a = t if(a.x) - text += "\ref[t]: [t] at ([a.x], [a.y], [a.z])
    " + text += "\ref[t]: [t] at ([a.x], [a.y], [a.z])
    " else if(a.loc && a.loc.x) - text += "\ref[t]: [t] in [a.loc] at ([a.loc.x], [a.loc.y], [a.loc.z])
    " + text += "\ref[t]: [t] in [a.loc] at ([a.loc.x], [a.loc.y], [a.loc.z])
    " else - text += "\ref[t]: [t]
    " + text += "\ref[t]: [t]
    " else - text += "\ref[t]: [t]
    " + text += "\ref[t]: [t]
    " //text += "[t]
    " show_browser(usr, text, "window=sdql_result") diff --git a/code/modules/admin/verbs/SDQL_2/SDQL_2.dm b/code/modules/admin/verbs/SDQL_2/SDQL_2.dm index 34aa6f688d8..0331cb89a49 100644 --- a/code/modules/admin/verbs/SDQL_2/SDQL_2.dm +++ b/code/modules/admin/verbs/SDQL_2/SDQL_2.dm @@ -104,15 +104,15 @@ if("select") var/text = "" for(var/datum/t in objs) - text += "\ref[t]" + text += "\ref[t]" if(istype(t, /atom)) var/atom/a = t if(a.x) - text += ": [t] at ([a.x], [a.y], [a.z])
    " + text += ": [t] at ([a.x], [a.y], [a.z])
    " else if(a.loc && a.loc.x) - text += ": [t] in [a.loc] at ([a.loc.x], [a.loc.y], [a.loc.z])
    " + text += ": [t] in [a.loc] at ([a.loc.x], [a.loc.y], [a.loc.z])
    " else text += ": [t]
    " diff --git a/code/modules/admin/verbs/adminhelp.dm b/code/modules/admin/verbs/adminhelp.dm index 8f3a645e8c0..ee9f73e756b 100644 --- a/code/modules/admin/verbs/adminhelp.dm +++ b/code/modules/admin/verbs/adminhelp.dm @@ -41,7 +41,7 @@ var/global/list/adminhelp_ignored_words = list("unknown","the","a","an","of","mo if(!(word in adminhelp_ignored_words)) if(word == "ai" && !ai_found) ai_found = 1 - msg += "[original_word] (CL) " + msg += "[original_word] (CL) " continue else var/mob/found = ckeys[word] @@ -52,10 +52,10 @@ var/global/list/adminhelp_ignored_words = list("unknown","the","a","an","of","mo if(found) if(!(found in mobs_found)) mobs_found += found - msg += "[original_word] (?)" + msg += "[original_word] (?)" if(!ai_found && isAI(found)) ai_found = 1 - msg += " (CL)" + msg += " (CL)" msg += " " continue msg += "[original_word] " @@ -118,7 +118,7 @@ var/global/list/adminhelp_ignored_words = list("unknown","the","a","an","of","mo //Options bar: mob, details ( admin = 2, dev = 3, character name (0 = just ckey, 1 = ckey and character name), link? (0 no don't make it a link, 1 do so), // highlight special roles (0 = everyone has same looking name, 1 = antags / special roles get a golden name) - msg = "HELP: [get_options_bar(mob, 2, 1, 1, 1, ticket)] ([(ticket.status == TICKET_OPEN) ? "TAKE" : "JOIN"]) (CLOSE): [msg]" + msg = "HELP: [get_options_bar(mob, 2, 1, 1, 1, ticket)] ([(ticket.status == TICKET_OPEN) ? "TAKE" : "JOIN"]) (CLOSE): [msg]" var/admin_number_afk = 0 @@ -131,7 +131,7 @@ var/global/list/adminhelp_ignored_words = list("unknown","the","a","an","of","mo to_chat(X, msg) window_flash(X) //show it to the person adminhelping too - to_chat(src, SPAN_BLUE("PM to-Staff (CLOSE): [original_msg]")) + to_chat(src, SPAN_BLUE("PM to-Staff (CLOSE): [original_msg]")) var/admin_number_present = global.admins.len - admin_number_afk log_admin("HELP: [key_name(src)]: [original_msg] - heard by [admin_number_present] non-AFK admins.") if(admin_number_present <= 0) diff --git a/code/modules/admin/verbs/adminpm.dm b/code/modules/admin/verbs/adminpm.dm index 9d9b1e0b6b1..9dd7c0e7d6d 100644 --- a/code/modules/admin/verbs/adminpm.dm +++ b/code/modules/admin/verbs/adminpm.dm @@ -124,7 +124,7 @@ var/sender_message = "" + create_text_tag("pm_out_alt", "PM", src) + " to [get_options_bar(C, holder ? 1 : 0, holder ? 1 : 0, 1)]" if(holder) - sender_message += " ([(ticket.status == TICKET_OPEN) ? "TAKE" : "JOIN"]) (CLOSE)" + sender_message += " ([(ticket.status == TICKET_OPEN) ? "TAKE" : "JOIN"]) (CLOSE)" sender_message += ": [generate_ahelp_key_words(mob, msg)]" else sender_message += ": [msg]" @@ -133,7 +133,7 @@ var/receiver_message = "" + create_text_tag("pm_in", "", C) + " \[[recieve_pm_type] PM\] [get_options_bar(src, C.holder ? 1 : 0, C.holder ? 1 : 0, 1)]" if(C.holder) - receiver_message += " ([(ticket.status == TICKET_OPEN) ? "TAKE" : "JOIN"]) (CLOSE)" + receiver_message += " ([(ticket.status == TICKET_OPEN) ? "TAKE" : "JOIN"]) (CLOSE)" receiver_message += ": [generate_ahelp_key_words(C.mob, msg)]" else receiver_message += ": [msg]" @@ -163,7 +163,7 @@ if(X == C || X == src) continue if(X.key != key && X.key != C.key && (X.holder.rights & R_ADMIN|R_MOD)) - to_chat(X, "" + create_text_tag("pm_other", "PM:", X) + " [key_name(src, X, 0, ticket)] to [key_name(C, X, 0, ticket)] ([(ticket.status == TICKET_OPEN) ? "TAKE" : "JOIN"]) (CLOSE): [msg]") + to_chat(X, "" + create_text_tag("pm_other", "PM:", X) + " [key_name(src, X, 0, ticket)] to [key_name(C, X, 0, ticket)] ([(ticket.status == TICKET_OPEN) ? "TAKE" : "JOIN"]) (CLOSE): [msg]") /client/proc/cmd_admin_irc_pm(sender) if(prefs.muted & MUTE_ADMINHELP) diff --git a/code/modules/admin/verbs/debug.dm b/code/modules/admin/verbs/debug.dm index 65defcabc42..43c18e0351c 100644 --- a/code/modules/admin/verbs/debug.dm +++ b/code/modules/admin/verbs/debug.dm @@ -389,7 +389,7 @@ var/dat = display_medical_data(H.get_raw_medical_data(), SKILL_MAX) - dat += text("
    Close", usr) + dat += text("
    Close", usr) show_browser(usr, dat, "window=scanconsole;size=430x600") /client/proc/cmd_analyse_health_context(mob/living/human/H as mob in global.human_mob_list) diff --git a/code/modules/admin/verbs/mapping.dm b/code/modules/admin/verbs/mapping.dm index 2c273c89da9..6638c344791 100644 --- a/code/modules/admin/verbs/mapping.dm +++ b/code/modules/admin/verbs/mapping.dm @@ -341,7 +341,7 @@ var/global/list/debug_verbs = list ( var/list/baddies = list("LEAKY PIPES") for(var/obj/machinery/atmospherics/pipe/P in SSmachines.machinery) if(P.leaking) - baddies += "[P] ([P.x],[P.y],[P.z] - JMP)" + baddies += "[P] ([P.x],[P.y],[P.z] - JMP)" to_chat(usr,jointext(baddies, "
    ")) diff --git a/code/modules/admin/verbs/pray.dm b/code/modules/admin/verbs/pray.dm index 5bfb6f10ef2..092f90de0ad 100644 --- a/code/modules/admin/verbs/pray.dm +++ b/code/modules/admin/verbs/pray.dm @@ -6,7 +6,7 @@ SSstatistics.add_field_details("admin_verb","PR") //If you are copy-pasting this, ensure the 2nd parameter is unique to the new proc! /proc/Centcomm_announce(var/msg, var/mob/Sender, var/iamessage) - msg = "[uppertext(global.using_map.boss_short)]M[iamessage ? " IA" : ""]:[key_name(Sender, 1)] (PP) (VV) ([admin_jump_link(Sender)]) (RS) (BSA) (RPLY): [msg]" + msg = "[uppertext(global.using_map.boss_short)]M[iamessage ? " IA" : ""]:[key_name(Sender, 1)] (PP) (VV) ([admin_jump_link(Sender)]) (RS) (BSA) (RPLY): [msg]" for(var/client/C in global.admins) if(R_ADMIN & C.holder.rights) @@ -14,7 +14,7 @@ sound_to(C, 'sound/machines/signal.ogg') /proc/Syndicate_announce(var/msg, var/mob/Sender) - msg = "ILLEGAL:[key_name(Sender, 1)] (PP) (VV) (DN) ([admin_jump_link(Sender)]) (RS) (BSA) (TAKE) (RPLY): [msg]" + msg = "ILLEGAL:[key_name(Sender, 1)] (PP) (VV) (DN) ([admin_jump_link(Sender)]) (RS) (BSA) (TAKE) (RPLY): [msg]" for(var/client/C in global.admins) if(R_ADMIN & C.holder.rights) to_chat(C, msg) diff --git a/code/modules/admin/view_variables/helpers.dm b/code/modules/admin/view_variables/helpers.dm index 42650c5971a..8e30b30b4d7 100644 --- a/code/modules/admin/view_variables/helpers.dm +++ b/code/modules/admin/view_variables/helpers.dm @@ -6,26 +6,26 @@ /atom/get_view_variables_header() return {" - [src] + [src]
    - << - [dir2text(dir)] - >> + << + [dir2text(dir)] + >> "} /mob/living/get_view_variables_header() return {" - [src] -
    << [dir2text(dir)] >> -
    [ckey ? ckey : "No ckey"] / [real_name ? real_name : "No real name"] + [src] +
    << [dir2text(dir)] >> +
    [ckey ? ckey : "No ckey"] / [real_name ? real_name : "No real name"]
    - BRUTE:[get_damage(BRUTE)] - FIRE:[get_damage(BURN)] - TOXIN:[get_damage(TOX)] - OXY:[get_damage(OXY)] - CLONE:[get_damage(CLONE)] - BRAIN:[get_damage(BRAIN)] + BRUTE:[get_damage(BRUTE)] + FIRE:[get_damage(BURN)] + TOXIN:[get_damage(TOX)] + OXY:[get_damage(OXY)] + CLONE:[get_damage(CLONE)] + BRAIN:[get_damage(BRAIN)]
    "} @@ -118,18 +118,18 @@ /datum/proc/make_view_variables_variable_entry(var/varname, var/value, var/hide_watch = 0) return {" - (E) - (C) - (M) - [hide_watch ? "" : "(W)"] + (E) + (C) + (M) + [hide_watch ? "" : "(W)"] "} // No mass editing of clients /client/make_view_variables_variable_entry(var/varname, var/value, var/hide_watch = 0) return {" - (E) - (C) - [hide_watch ? "" : "(W)"] + (E) + (C) + [hide_watch ? "" : "(W)"] "} // These methods are all procs and don't use stored lists to avoid VV exploits diff --git a/code/modules/admin/view_variables/view_variables.dm b/code/modules/admin/view_variables/view_variables.dm index 36484374356..f39d8cc574c 100644 --- a/code/modules/admin/view_variables/view_variables.dm +++ b/code/modules/admin/view_variables/view_variables.dm @@ -49,8 +49,8 @@ var/global/list/view_variables_no_assoc = list("verbs", "contents","screen","ima
    - Refresh - [A ? "Jump To":""] + Refresh + [A ? "Jump To":""] " t += "" t += "Target account number:
    " @@ -204,21 +204,21 @@ t += "" else t += "Account balance: [authenticated_account.format_value_by_currency(authenticated_account.money)]" - t += "
    " + t += "" t += "" t += " Cash Chargecard
    " t += "" t += "
    " - t += "Change account security level
    " - t += "Make transfer
    " - t += "View transaction log
    " - t += "Print balance statement
    " + t += "Change account security level
    " + t += "Make transfer
    " + t += "View transaction log
    " + t += "Print balance statement
    " //Logout/back buttons, put here for some modularity and for less repeated code if(view_screen == NO_SCREEN) - t += "Logout
    " + t += "Logout
    " else - t += "Back" + t += "Back" else //change our display depending on account security levels @@ -228,7 +228,7 @@ t += "This account requires a PIN to access. For security reasons the account # will need re-entered or ID bound to this account re-scanned." else t += "Due to the security settings on this account, all information needs to be re-entered and the ID bound to this account placed in the slot above.
    " - t += "
    " + t += "" t += "" t += "" t += "Account:

    " diff --git a/code/modules/economy/cael/EFTPOS.dm b/code/modules/economy/cael/EFTPOS.dm index 673cb97e740..5af1d83c3db 100644 --- a/code/modules/economy/cael/EFTPOS.dm +++ b/code/modules/economy/cael/EFTPOS.dm @@ -63,7 +63,7 @@ dat += "This terminal is [machine_id]. Report this code when contacting IT Support
    " var/decl/currency/cur = GET_DECL(currency) if(transaction_locked) - dat += "Back[transaction_paid ? "" : " (authentication required)"]

    " + dat += "Back[transaction_paid ? "" : " (authentication required)"]

    " dat += "Transaction purpose: [transaction_purpose]
    " dat += "Value: [cur.format_value(transaction_amount)]
    " dat += "Linked account: [linked_account ? linked_account.owner_name : "None"]
    " @@ -71,16 +71,16 @@ dat += "This transaction has been processed successfully.
    " else dat += "Swipe your card below the line to finish this transaction.
    " - dat += "\[------\]" + dat += "\[------\]" else - dat += "Lock in new transaction

    " - - dat += "Transaction purpose: [transaction_purpose]
    " - dat += "Value: [cur.format_value(transaction_amount)]
    " - dat += "Linked account: [linked_account ? linked_account.owner_name : "None"]
    " - dat += "Change access code
    " - dat += "Change EFTPOS ID
    " - dat += "Scan card to reset access code \[------\]" + dat += "Lock in new transaction

    " + + dat += "Transaction purpose: [transaction_purpose]
    " + dat += "Value: [cur.format_value(transaction_amount)]
    " + dat += "Linked account: [linked_account ? linked_account.owner_name : "None"]
    " + dat += "Change access code
    " + dat += "Change EFTPOS ID
    " + dat += "Scan card to reset access code \[------\]" show_browser(user, dat, "window=eftpos") else close_browser(user, "window=eftpos") diff --git a/code/modules/error_handler/error_viewer.dm b/code/modules/error_handler/error_viewer.dm index 4cf335faab0..0aae86e2df7 100644 --- a/code/modules/error_handler/error_viewer.dm +++ b/code/modules/error_handler/error_viewer.dm @@ -83,7 +83,7 @@ var/global/datum/error_viewer/error_cache/error_cache if (linear) back_to_param += ";viewruntime_linear=1" - return "[linktext]" + return "[linktext]" /datum/error_viewer/error_cache var/list/errors = list() @@ -194,12 +194,12 @@ var/global/datum/error_viewer/error_cache/error_cache var/html = build_header(back_to, linear) html += "[name]
    [desc]
    " if (usr_ref) - html += "
    usr: VV" - html += " PP" - html += " Follow" + html += "
    usr: VV" + html += " PP" + html += " Follow" if (istype(usr_loc)) - html += "
    usr.loc: VV" - html += " JMP" + html += "
    usr.loc: VV" + html += " JMP" browse_to(user, html) diff --git a/code/modules/games/boardgame.dm b/code/modules/games/boardgame.dm index 40e238f16b5..f326cc6036d 100644 --- a/code/modules/games/boardgame.dm +++ b/code/modules/games/boardgame.dm @@ -92,13 +92,13 @@ else dat+= ">" if(!isobserver(user)) - dat += "" + dat += "" dat += "" dat += "" if(selected >= 0 && !isobserver(user)) - dat += "
    Remove Selected Piece" + dat += "
    Remove Selected Piece" show_browser(user, jointext(dat, null), "window=boardgame;size=430x500") // 50px * 8 squares + 30 margin onclose(usr, "boardgame") diff --git a/code/modules/ghosttrap/trap.dm b/code/modules/ghosttrap/trap.dm index 0bb32c80124..bc3fbea82fd 100644 --- a/code/modules/ghosttrap/trap.dm +++ b/code/modules/ghosttrap/trap.dm @@ -39,7 +39,7 @@ if(pref_check && !O.client.wishes_to_be_role(pref_check)) continue if(O.client) - to_chat(O, "[request_string] (Occupy) ([ghost_follow_link(target, O)])") + to_chat(O, "[request_string] (Occupy) ([ghost_follow_link(target, O)])") /decl/ghosttrap/proc/unregister_target(var/target) LAZYREMOVE(request_timeouts, target) diff --git a/code/modules/goals/_goal.dm b/code/modules/goals/_goal.dm index fbcf0e55f67..b36b7b50a40 100644 --- a/code/modules/goals/_goal.dm +++ b/code/modules/goals/_goal.dm @@ -28,8 +28,8 @@ if(show_success) . += get_success_string() if(allow_modification) - if(can_abandon) . += " (Abandon)" - if(can_reroll) . += " (Reroll)" + if(can_abandon) . += " (Abandon)" + if(can_reroll) . += " (Reroll)" /datum/goal/proc/get_success_string() return check_success() ? " Success!" : " Failure." diff --git a/code/modules/goals/goal_mob.dm b/code/modules/goals/goal_mob.dm index a2230468245..ddd87767c25 100644 --- a/code/modules/goals/goal_mob.dm +++ b/code/modules/goals/goal_mob.dm @@ -30,8 +30,8 @@ else to_chat(src, SPAN_NOTICE("You have no personal goals this round.")) if(allow_modification && LAZYLEN(mind.goals) < 5) - to_chat(src, SPAN_NOTICE("Add Random Goal")) - + to_chat(src, SPAN_NOTICE("Add Random Goal")) + for(var/dept_key in mind.assigned_job?.department_types) var/decl/department/dept = SSjobs.get_department_by_type(dept_key) if(dept) diff --git a/code/modules/holodeck/HolodeckControl.dm b/code/modules/holodeck/HolodeckControl.dm index e044274ad46..3d408b7e821 100644 --- a/code/modules/holodeck/HolodeckControl.dm +++ b/code/modules/holodeck/HolodeckControl.dm @@ -41,9 +41,9 @@ dat += "Holodeck Control System
    " if(!islocked) - dat += "Holodeck is (UNLOCKED)
    " + dat += "Holodeck is (UNLOCKED)
    " else - dat += "Holodeck is (LOCKED)
    " + dat += "Holodeck is (LOCKED)
    " show_browser(user, dat, "window=computer;size=400x500") onclose(user, "computer") return @@ -63,10 +63,10 @@ return for(var/prog in supported_programs) - dat += "([prog])
    " + dat += "([prog])
    " dat += "
    " - dat += "(Turn Off)
    " + dat += "(Turn Off)
    " dat += "
    " dat += "Please ensure that only holographic weapons are used in the holodeck if a combat simulation has been loaded.
    " @@ -77,15 +77,15 @@ if (emagged) dat += "ERROR: Cannot re-enable Safety Protocols.
    " else - dat += "(Re-Enable Safety Protocols?)
    " + dat += "(Re-Enable Safety Protocols?)
    " else - dat += "(Override Safety Protocols?)
    " + dat += "(Override Safety Protocols?)
    " dat += "
    " if(safety_disabled) for(var/prog in restricted_programs) - dat += "(Begin [prog])
    " + dat += "(Begin [prog])
    " dat += "Ensure the holodeck is empty before testing.
    " dat += "
    " dat += "Safety Protocols are DISABLED
    " @@ -93,9 +93,9 @@ dat += "Safety Protocols are ENABLED
    " if(linkedholodeck.has_gravity) - dat += "Gravity is (ON)
    " + dat += "Gravity is (ON)
    " else - dat += "Gravity is (OFF)
    " + dat += "Gravity is (OFF)
    " show_browser(user, dat, "window=computer;size=400x500") onclose(user, "computer") return diff --git a/code/modules/integrated_electronics/core/assemblies.dm b/code/modules/integrated_electronics/core/assemblies.dm index 4b5e96c5b0a..7d6b5e8f50c 100644 --- a/code/modules/integrated_electronics/core/assemblies.dm +++ b/code/modules/integrated_electronics/core/assemblies.dm @@ -60,7 +60,7 @@ to_chat(user, "Its got a few dents in it.") if((isobserver(user) && ckeys_allowed_to_scan[user.ckey]) || check_rights(R_ADMIN, 0, user)) - to_chat(user, "You can scan this circuit."); + to_chat(user, "You can scan this circuit."); /obj/item/electronic_assembly/check_health(lastdamage, lastdamtype, lastdamflags, consumed) if(!can_take_damage()) @@ -136,7 +136,7 @@ /obj/item/electronic_assembly/proc/closed_interact(mob/user) var/HTML = list() HTML += "[src.name]" - HTML += "
    \[Refresh\]" + HTML += "
    \[Refresh\]" HTML += "

    " var/listed_components = FALSE @@ -150,7 +150,7 @@ for(var/entry in topic_data) var/href = topic_data[entry] if(href) - HTML += "[entry]" + HTML += "[entry]" else HTML += entry HTML += "
    " @@ -170,11 +170,11 @@ HTML += "[name]" - HTML += "\[Refresh\] | \[Rename\]
    " + HTML += "\[Refresh\] | \[Rename\]
    " HTML += "[total_part_size]/[max_components] space taken up in the assembly.
    " HTML += "[total_complexity]/[max_complexity] complexity in the assembly.
    " if(battery) - HTML += "[round(battery.charge, 0.1)]/[battery.maxcharge] ([round(battery.percent(), 0.1)]%) cell charge. \[Remove\]" + HTML += "[round(battery.charge, 0.1)]/[battery.maxcharge] ([round(battery.percent(), 0.1)]%) cell charge. \[Remove\]" else HTML += "No power cell detected!" @@ -185,13 +185,13 @@ var/start_index = ((components_per_page * interact_page) + 1) for(var/i = start_index to min(length(assembly_components), start_index + (components_per_page - 1))) var/obj/item/integrated_circuit/circuit = assembly_components[i] - HTML += "\[ [i] \] | " - HTML += "\[R\] | " + HTML += "\[ [i] \] | " + HTML += "\[R\] | " if(circuit.removable) - HTML += "\[-\] | " + HTML += "\[-\] | " else HTML += "\[-\] | " - HTML += "[circuit.displayed_name]" + HTML += "[circuit.displayed_name]" HTML += "
    " if(length(assembly_components) > components_per_page) @@ -200,7 +200,7 @@ if((i-1) == interact_page) HTML += " [i]" else - HTML += " [i]" + HTML += " [i]" HTML += " \]" HTML += "" diff --git a/code/modules/integrated_electronics/core/integrated_circuit.dm b/code/modules/integrated_electronics/core/integrated_circuit.dm index 54d278494b5..f60872d9179 100644 --- a/code/modules/integrated_electronics/core/integrated_circuit.dm +++ b/code/modules/integrated_electronics/core/integrated_circuit.dm @@ -141,13 +141,13 @@ a creative player the means to solve many problems. Circuits are held inside an HTML += "" if(assembly) - HTML += "\[Return to Assembly\]
    " + HTML += "\[Return to Assembly\]
    " - HTML += "\[Refresh\] | " - HTML += "\[Rename\] | " - HTML += "\[Copy Ref\]" + HTML += "\[Refresh\] | " + HTML += "\[Rename\] | " + HTML += "\[Copy Ref\]" if(assembly && removable) - HTML += " | \[Remove\]" + HTML += " | \[Remove\]" HTML += "
    " HTML += "" @@ -169,13 +169,13 @@ a creative player the means to solve many problems. Circuits are held inside an if(1) io = get_pin_ref(IC_INPUT, i) if(io) - words += "[io.display_pin_type()] [io.name] \ - [io.display_data(io.data)]
    " + words += "[io.display_pin_type()] [io.name] \ + [io.display_data(io.data)]
    " if(io.linked.len) for(var/k in 1 to io.linked.len) var/datum/integrated_io/linked = io.linked[k] - words += "[linked] \ - @ [linked.holder.displayed_name]
    " + words += "[linked] \ + @ [linked.holder.displayed_name]
    " if(LAZYLEN(outputs) > LAZYLEN(inputs)) height = 1 @@ -188,13 +188,13 @@ a creative player the means to solve many problems. Circuits are held inside an if(3) io = get_pin_ref(IC_OUTPUT, i) if(io) - words += "[io.display_pin_type()] [io.name] \ - [io.display_data(io.data)]
    " + words += "[io.display_pin_type()] [io.name] \ + [io.display_data(io.data)]
    " if(io.linked.len) for(var/k in 1 to io.linked.len) var/datum/integrated_io/linked = io.linked[k] - words += "[linked] \ - @ [linked.holder.displayed_name]
    " + words += "[linked] \ + @ [linked.holder.displayed_name]
    " if(LAZYLEN(inputs) > LAZYLEN(outputs)) height = 1 @@ -205,13 +205,13 @@ a creative player the means to solve many problems. Circuits are held inside an var/datum/integrated_io/io = activators[i] var/words = list() - words += "[io] " - words += "[io.data?"\":"\"]
    " + words += "[io] " + words += "[io.data?"\":"\"]
    " if(io.linked.len) for(var/k in 1 to io.linked.len) var/datum/integrated_io/linked = io.linked[k] - words += "[linked] \ - @ [linked.holder.displayed_name]
    " + words += "[linked] \ + @ [linked.holder.displayed_name]
    " HTML += "" HTML += "" diff --git a/code/modules/integrated_electronics/core/printer.dm b/code/modules/integrated_electronics/core/printer.dm index 8a33268251d..71b69011ced 100644 --- a/code/modules/integrated_electronics/core/printer.dm +++ b/code/modules/integrated_electronics/core/printer.dm @@ -167,21 +167,21 @@ if((can_clone && get_config_value(/decl/config/toggle/on/allow_ic_printing)) || debug) HTML += "Here you can load script for your assembly.
    " if(!cloning) - HTML += " {Load Program} " + HTML += " {Load Program} " else HTML += " {Load Program}" if(!program) HTML += " {[fast_clone ? "Print" : "Begin Printing"] Assembly}" else if(cloning) - HTML += " {Cancel Print}" + HTML += " {Cancel Print}" else - HTML += " {[fast_clone ? "Print" : "Begin Printing"] Assembly}" + HTML += " {[fast_clone ? "Print" : "Begin Printing"] Assembly}" HTML += "

    " HTML += "Categories:" for(var/category in SScircuit.circuit_fabricator_recipe_list) if(category != current_category) - HTML += " \[[category]\] " + HTML += " \[[category]\] " else // Bold the button if it's already selected. HTML += " \[[category]\] " HTML += "
    " @@ -196,7 +196,7 @@ if((initial(IC.spawn_flags) & IC_SPAWN_RESEARCH) && (!(initial(IC.spawn_flags) & IC_SPAWN_DEFAULT)) && !upgraded) can_build = FALSE if(can_build) - HTML += "\[[initial(O.name)]\]: [initial(O.desc)]
    " + HTML += "\[[initial(O.name)]\]: [initial(O.desc)]
    " else HTML += "\[[initial(O.name)]\]: [initial(O.desc)]
    " diff --git a/code/modules/integrated_electronics/core/special_pins/list_pin.dm b/code/modules/integrated_electronics/core/special_pins/list_pin.dm index 23999d250be..60f7561e46e 100644 --- a/code/modules/integrated_electronics/core/special_pins/list_pin.dm +++ b/code/modules/integrated_electronics/core/special_pins/list_pin.dm @@ -10,19 +10,19 @@ var/list/my_list = data var/t = "

    [src]


    " t += "List length: [my_list.len]
    " - t += "\[Refresh\] | " - t += "\[Add\] | " - t += "\[Remove\] | " - t += "\[Edit\] | " - t += "\[Swap\] | " - t += "\[Clear\]
    " + t += "\[Refresh\] | " + t += "\[Add\] | " + t += "\[Remove\] | " + t += "\[Edit\] | " + t += "\[Swap\] | " + t += "\[Clear\]
    " t += "
    " var/i = 0 for(var/line in my_list) i++ t += "#[i] | [display_data(line)] | " - t += "\[Edit\] | " - t += "\[Remove\]
    " + t += "\[Edit\] | " + t += "\[Remove\]
    " show_browser(user, t, "window=list_pin_\ref[src];size=500x400") /datum/integrated_io/lists/proc/add_to_list(mob/user, var/new_entry) diff --git a/code/modules/mob/living/bot/bot.dm b/code/modules/mob/living/bot/bot.dm index cf84fa7cad7..b1cea26e1c5 100644 --- a/code/modules/mob/living/bot/bot.dm +++ b/code/modules/mob/living/bot/bot.dm @@ -164,7 +164,7 @@ return /mob/living/bot/proc/GetInteractStatus() - . = "Status: [on ? "On" : "Off"]" + . = "Status: [on ? "On" : "Off"]" . += "
    Behaviour controls are [locked ? "locked" : "unlocked"]" . += "
    Maintenance panel is [open ? "opened" : "closed"]" diff --git a/code/modules/mob/living/bot/cleanbot.dm b/code/modules/mob/living/bot/cleanbot.dm index bdcd85af07a..e640ecc4784 100644 --- a/code/modules/mob/living/bot/cleanbot.dm +++ b/code/modules/mob/living/bot/cleanbot.dm @@ -99,12 +99,12 @@ . += "Automatic Cleaner v1.0" /mob/living/bot/cleanbot/GetInteractPanel() - . = "Cleans blood: [blood ? "Yes" : "No"]" - . += "
    Patrol station: [will_patrol ? "Yes" : "No"]" + . = "Cleans blood: [blood ? "Yes" : "No"]" + . += "
    Patrol station: [will_patrol ? "Yes" : "No"]" /mob/living/bot/cleanbot/GetInteractMaintenance() - . = "Odd looking screw twiddled: [screwloose ? "Yes" : "No"]" - . += "
    Weird button pressed: [oddbutton ? "Yes" : "No"]" + . = "Odd looking screw twiddled: [screwloose ? "Yes" : "No"]" + . += "
    Weird button pressed: [oddbutton ? "Yes" : "No"]" /mob/living/bot/cleanbot/ProcessCommand(var/mob/user, var/command, var/href_list) ..() diff --git a/code/modules/mob/living/bot/farmbot.dm b/code/modules/mob/living/bot/farmbot.dm index c09b7b9cdee..4a487bb1a4c 100644 --- a/code/modules/mob/living/bot/farmbot.dm +++ b/code/modules/mob/living/bot/farmbot.dm @@ -45,20 +45,20 @@ . += "error: not found" /mob/living/bot/farmbot/GetInteractPanel() - . = "Water plants : [waters_trays ? "Yes" : "No"]" - . += "
    Refill watertank : [refills_water ? "Yes" : "No"]" - . += "
    Weed plants: [uproots_weeds ? "Yes" : "No"]" - . += "
    Replace fertilizer: [replaces_nutriment ? "Yes" : "No"]" - . += "
    Collect produce: [collects_produce ? "Yes" : "No"]" - . += "
    Remove dead plants: [removes_dead ? "Yes" : "No"]" + . = "Water plants : [waters_trays ? "Yes" : "No"]" + . += "
    Refill watertank : [refills_water ? "Yes" : "No"]" + . += "
    Weed plants: [uproots_weeds ? "Yes" : "No"]" + . += "
    Replace fertilizer: [replaces_nutriment ? "Yes" : "No"]" + . += "
    Collect produce: [collects_produce ? "Yes" : "No"]" + . += "
    Remove dead plants: [removes_dead ? "Yes" : "No"]" /mob/living/bot/farmbot/GetInteractMaintenance() . = "Plant identifier status: " switch(emagged) if(0) - . += "Normal" + . += "Normal" if(1) - . += "Scrambled (DANGER)" + . += "Scrambled (DANGER)" if(2) . += "ERROROROROROR-----" diff --git a/code/modules/mob/living/bot/floorbot.dm b/code/modules/mob/living/bot/floorbot.dm index 24380760339..f972e041782 100644 --- a/code/modules/mob/living/bot/floorbot.dm +++ b/code/modules/mob/living/bot/floorbot.dm @@ -45,17 +45,17 @@ . += "
    Tiles left: [amount]" /mob/living/bot/floorbot/GetInteractPanel() - . = "Improves floors: [improvefloors ? "Yes" : "No"]" - . += "
    Finds tiles: [eattiles ? "Yes" : "No"]" - . += "
    Make single pieces of metal into tiles when empty: [maketiles ? "Yes" : "No"]" + . = "Improves floors: [improvefloors ? "Yes" : "No"]" + . += "
    Finds tiles: [eattiles ? "Yes" : "No"]" + . += "
    Make single pieces of metal into tiles when empty: [maketiles ? "Yes" : "No"]" /mob/living/bot/floorbot/GetInteractMaintenance() . = "Disassembly mode: " switch(emagged) if(0) - . += "Off" + . += "Off" if(1) - . += "On (Caution)" + . += "On (Caution)" if(2) . += "ERROROROROROR-----" diff --git a/code/modules/mob/living/bot/medibot.dm b/code/modules/mob/living/bot/medibot.dm index f24139744d8..e0f4c842d86 100644 --- a/code/modules/mob/living/bot/medibot.dm +++ b/code/modules/mob/living/bot/medibot.dm @@ -203,34 +203,34 @@ . = ..() . += "
    Beaker: " if(reagent_glass) - . += "Loaded \[[reagent_glass.reagents.total_volume]/[reagent_glass.reagents.maximum_volume]\]" + . += "Loaded \[[reagent_glass.reagents.total_volume]/[reagent_glass.reagents.maximum_volume]\]" else . += "None loaded" /mob/living/bot/medbot/GetInteractPanel() . = "Healing threshold: " - . += "-- " - . += "- " + . += "-- " + . += "- " . += "[heal_threshold] " - . += "+ " - . += "++" + . += "+ " + . += "++" . += "
    Injection level: " - . += "- " + . += "- " . += "[injection_amount] " - . += "+ " + . += "+ " - . += "
    Reagent source: [use_beaker ? "Loaded Beaker (When available)" : "Internal Synthesizer"]" - . += "
    Treatment report is [declare_treatment ? "on" : "off"]. Toggle" - . += "
    The speaker switch is [vocal ? "on" : "off"]. Toggle" + . += "
    Reagent source: [use_beaker ? "Loaded Beaker (When available)" : "Internal Synthesizer"]" + . += "
    Treatment report is [declare_treatment ? "on" : "off"]. Toggle" + . += "
    The speaker switch is [vocal ? "on" : "off"]. Toggle" /mob/living/bot/medbot/GetInteractMaintenance() . = "Injection mode: " switch(emagged) if(0) - . += "Treatment" + . += "Treatment" if(1) - . += "Random (DANGER)" + . += "Random (DANGER)" if(2) . += "ERROROROROROR-----" diff --git a/code/modules/mob/living/bot/mulebot.dm b/code/modules/mob/living/bot/mulebot.dm index bd720f88e72..255cc333ade 100644 --- a/code/modules/mob/living/bot/mulebot.dm +++ b/code/modules/mob/living/bot/mulebot.dm @@ -67,19 +67,19 @@ . += "
    Current Load: [load ? load.name : "none"]" /mob/living/bot/mulebot/GetInteractPanel() - . += "Stop" - . += "
    Proceed" - . += "
    Return to home" - . += "
    Set destination" - . += "
    Set home" - . += "
    Toggle auto return home ([auto_return ? "On" : "Off"])" - . += "
    Toggle non-standard cargo ([crates_only ? "Off" : "On"])" + . += "Stop" + . += "
    Proceed" + . += "
    Return to home" + . += "
    Set destination" + . += "
    Set home" + . += "
    Toggle auto return home ([auto_return ? "On" : "Off"])" + . += "
    Toggle non-standard cargo ([crates_only ? "Off" : "On"])" if(load) - . += "
    Unload now" + . += "
    Unload now" /mob/living/bot/mulebot/GetInteractMaintenance() - . = "Toggle safety ([safety ? "On" : "Off - DANGER"])" + . = "Toggle safety ([safety ? "On" : "Off - DANGER"])" /mob/living/bot/mulebot/ProcessCommand(var/mob/user, var/command, var/href_list) ..() diff --git a/code/modules/mob/living/bot/secbot.dm b/code/modules/mob/living/bot/secbot.dm index b0cde7f77e3..947f989f447 100644 --- a/code/modules/mob/living/bot/secbot.dm +++ b/code/modules/mob/living/bot/secbot.dm @@ -66,19 +66,19 @@ . += "Automatic Security Unit" /mob/living/bot/secbot/GetInteractPanel() - . = "Check for weapon authorization: [idcheck ? "Yes" : "No"]" - . += "
    Check security records: [check_records ? "Yes" : "No"]" - . += "
    Check arrest status: [check_arrest ? "Yes" : "No"]" - . += "
    Report arrests: [declare_arrests ? "Yes" : "No"]" - . += "
    Auto patrol: [will_patrol ? "On" : "Off"]" + . = "Check for weapon authorization: [idcheck ? "Yes" : "No"]" + . += "
    Check security records: [check_records ? "Yes" : "No"]" + . += "
    Check arrest status: [check_arrest ? "Yes" : "No"]" + . += "
    Report arrests: [declare_arrests ? "Yes" : "No"]" + . += "
    Auto patrol: [will_patrol ? "On" : "Off"]" /mob/living/bot/secbot/GetInteractMaintenance() . = "Threat identifier status: " switch(emagged) if(0) - . += "Normal" + . += "Normal" if(1) - . += "Scrambled (DANGER)" + . += "Scrambled (DANGER)" if(2) . += "ERROROROROROR-----" diff --git a/code/modules/mob/living/human/examine.dm b/code/modules/mob/living/human/examine.dm index 064edd76354..0d214079de3 100644 --- a/code/modules/mob/living/human/examine.dm +++ b/code/modules/mob/living/human/examine.dm @@ -6,7 +6,7 @@ species_name += "[species.cyborg_noun] [species.get_root_species_name(src)]" else species_name += "[species.name]" - msg += ", \a [species_name]![(user.can_use_codex() && SScodex.get_codex_entry(get_codex_value(user))) ? SPAN_NOTICE(" \[?\]") : ""]" + msg += ", \a [species_name]![(user.can_use_codex() && SScodex.get_codex_entry(get_codex_value(user))) ? SPAN_NOTICE(" \[?\]") : ""]" var/extra_species_text = species.get_additional_examine_text(src) if(extra_species_text) msg += "
    [extra_species_text]" @@ -203,8 +203,8 @@ if(R) criminal = R.get_criminalStatus() - msg += "Criminal status:\[[criminal]\]\n" - msg += "Security records:\[View\]\n" + msg += "Criminal status:\[[criminal]\]\n" + msg += "Security records:\[View\]\n" if(hasHUD(user, HUD_MEDICAL)) var/perpname = "wot" @@ -222,8 +222,8 @@ if(R) medical = R.get_status() - msg += "Physical status:\[[medical]\]\n" - msg += "Medical records:\[View\]\n" + msg += "Physical status:\[[medical]\]\n" + msg += "Medical records:\[View\]\n" // Show IC/OOC info if available. if(comments_record_id) @@ -339,6 +339,6 @@ HTML += TextPreview(flavor_texts["feet"]) HTML += "
    " HTML += "
    " - HTML +="\[Done\]" + HTML +="\[Done\]" HTML += "" show_browser(src, jointext(HTML,null), "window=flavor_changes;size=430x300") diff --git a/code/modules/mob/living/human/human.dm b/code/modules/mob/living/human/human.dm index e8e79e0bffd..c3639aa7fac 100644 --- a/code/modules/mob/living/human/human.dm +++ b/code/modules/mob/living/human/human.dm @@ -139,7 +139,7 @@ . = ..() for(var/entry in worn_underwear) var/obj/item/underwear/UW = entry - LAZYADD(., "
    Remove \the [UW]") + LAZYADD(., "
    Remove \the [UW]") /mob/living/human/OnSelfTopic(href_list) if (href_list["lookitem"]) diff --git a/code/modules/mob/living/living.dm b/code/modules/mob/living/living.dm index ad30353c155..e61fb103f46 100644 --- a/code/modules/mob/living/living.dm +++ b/code/modules/mob/living/living.dm @@ -33,7 +33,7 @@ if(!..()) return 0 - usr.visible_message("[src] points to [A]") + usr.visible_message("[src] points to [A]") return 1 /*one proc, four uses diff --git a/code/modules/mob/living/silicon/robot/drone/drone_console.dm b/code/modules/mob/living/silicon/robot/drone/drone_console.dm index 65158f20d7d..41ef351a611 100644 --- a/code/modules/mob/living/silicon/robot/drone/drone_console.dm +++ b/code/modules/mob/living/silicon/robot/drone/drone_console.dm @@ -26,12 +26,12 @@ dat += "
    [D.real_name] ([D.stat == DEAD ? "INACTIVE" : "ACTIVE"])" dat += "
    Cell charge: [D.cell.charge]/[D.cell.maxcharge]." dat += "
    Currently located in: [get_area_name(D)]." - dat += "
    Resync | Shutdown
    " + dat += "
    Resync | Shutdown" - dat += "

    Request drone presence in area: [drone_call_area] (Send ping)" + dat += "

    Request drone presence in area: [drone_call_area] (Send ping)" dat += "

    Drone fabricator: " - dat += "[dronefab ? "[(dronefab.produce_drones && !(dronefab.stat & NOPOWER)) ? "ACTIVE" : "INACTIVE"]" : "FABRICATOR NOT DETECTED. (search)"]" + dat += "[dronefab ? "[(dronefab.produce_drones && !(dronefab.stat & NOPOWER)) ? "ACTIVE" : "INACTIVE"]" : "FABRICATOR NOT DETECTED. (search)"]" show_browser(user, dat, "window=computer;size=400x500") onclose(user, "computer") return diff --git a/code/modules/mob/living/silicon/robot/drone/drone_items.dm b/code/modules/mob/living/silicon/robot/drone/drone_items.dm index cb51b2bab66..a75c51534f9 100644 --- a/code/modules/mob/living/silicon/robot/drone/drone_items.dm +++ b/code/modules/mob/living/silicon/robot/drone/drone_items.dm @@ -419,9 +419,9 @@ dat += {" Activated Modules
    - Module 1: [module_state_1 ? "[module_state_1]" : "No Module"]
    - Module 2: [module_state_2 ? "
    [module_state_2]" : "No Module"]
    - Module 3: [module_state_3 ? "
    [module_state_3]" : "No Module"]
    + Module 1: [module_state_1 ? "
    [module_state_1]" : "No Module"]
    + Module 2: [module_state_2 ? "
    [module_state_2]" : "No Module"]
    + Module 3: [module_state_3 ? "
    [module_state_3]" : "No Module"]

    Installed Modules

    "} @@ -438,7 +438,7 @@ else if(activated(O)) module_string += text("[O]: Activated
    ") else - module_string += text("[O]:
    Activate
    ") + module_string += text("[O]: Activate
    ") if((istype(O,/obj/item) || istype(O,/obj/item)) && !(istype(O,/obj/item/stack/cable_coil))) tools += module_string @@ -453,7 +453,7 @@ else if(activated(module.emag)) dat += text("[module.emag]: Activated
    ") else - dat += text("[module.emag]: Activate
    ") + dat += text("[module.emag]: Activate
    ") dat += resources diff --git a/code/modules/mob/living/silicon/robot/robot.dm b/code/modules/mob/living/silicon/robot/robot.dm index 4490bd4986f..e3eeeee6c46 100644 --- a/code/modules/mob/living/silicon/robot/robot.dm +++ b/code/modules/mob/living/silicon/robot/robot.dm @@ -722,9 +722,9 @@ dat += {" Activated Modules
    - Module 1: [module_state_1 ? "[module_state_1]" : "No Module"]
    - Module 2: [module_state_2 ? "
    [module_state_2]" : "No Module"]
    - Module 3: [module_state_3 ? "
    [module_state_3]" : "No Module"]
    + Module 1: [module_state_1 ? "
    [module_state_1]" : "No Module"]
    + Module 2: [module_state_2 ? "
    [module_state_2]" : "No Module"]
    + Module 3: [module_state_3 ? "
    [module_state_3]" : "No Module"]

    Installed Modules

    "} @@ -735,17 +735,17 @@ else if(activated(obj)) dat += text("[obj]: Activated
    ") else - dat += text("[obj]:
    Activate
    ") + dat += text("[obj]: Activate
    ") if (emagged && module.emag) if(activated(module.emag)) dat += text("[module.emag]: Activated
    ") else - dat += text("[module.emag]: Activate
    ") + dat += text("[module.emag]: Activate
    ") /* if(activated(obj)) - dat += text("[obj]: \[Activated | Deactivate\]
    ") + dat += text("[obj]: \[Activated | Deactivate\]
    ") else - dat += text("[obj]: \[Activate | Deactivated\]
    ") + dat += text("[obj]: \[Activate | Deactivated\]
    ") */ show_browser(src, dat, "window=robotmod") diff --git a/code/modules/mob/living/silicon/silicon.dm b/code/modules/mob/living/silicon/silicon.dm index ad974013881..49bbe726058 100644 --- a/code/modules/mob/living/silicon/silicon.dm +++ b/code/modules/mob/living/silicon/silicon.dm @@ -321,7 +321,7 @@ to_chat(src, "\The [A.alarm_name()].") if(alarm_raised) - to_chat(src, "\[Show Alerts\]") + to_chat(src, "\[Show Alerts\]") for(var/datum/alarm_handler/AH in queued_alarms) var/list/alarms = queued_alarms[AH] @@ -333,7 +333,7 @@ /mob/living/silicon/ai/raised_alarm(var/datum/alarm/A) var/cameratext = "" for(var/obj/machinery/camera/C in A.cameras()) - cameratext += "[(cameratext == "")? "" : "|"][C.c_tag]" + cameratext += "[(cameratext == "")? "" : "|"][C.c_tag]" to_chat(src, "[A.alarm_name()]! ([(cameratext)? cameratext : "No Camera"])") diff --git a/code/modules/mob/login.dm b/code/modules/mob/login.dm index 28160d06449..a2d7f65ab16 100644 --- a/code/modules/mob/login.dm +++ b/code/modules/mob/login.dm @@ -19,10 +19,10 @@ is_multikeying = 1 if(matches) if(M.client) - message_admins("Notice: [key_name_admin(src)] has the same [matches] as [key_name_admin(M)].", 1) + message_admins("Notice: [key_name_admin(src)] has the same [matches] as [key_name_admin(M)].", 1) log_access("Notice: [key_name(src)] has the same [matches] as [key_name(M)].") else - message_admins("Notice: [key_name_admin(src)] has the same [matches] as [key_name_admin(M)] (no longer logged in). ", 1) + message_admins("Notice: [key_name_admin(src)] has the same [matches] as [key_name_admin(M)] (no longer logged in). ", 1) log_access("Notice: [key_name(src)] has the same [matches] as [key_name(M)] (no longer logged in).") if(is_multikeying && !client.warned_about_multikeying) client.warned_about_multikeying = 1 diff --git a/code/modules/mob/mob.dm b/code/modules/mob/mob.dm index 3d0490df4f6..e236a36b671 100644 --- a/code/modules/mob/mob.dm +++ b/code/modules/mob/mob.dm @@ -346,7 +346,7 @@ if(!inv_slot || inv_slot.skip_on_strip_display) continue var/obj/item/held = inv_slot.get_equipped_item() - dat += "[capitalize(inv_slot.slot_name)]: [held?.name || "nothing"]" + dat += "[capitalize(inv_slot.slot_name)]: [held?.name || "nothing"]" var/list/all_slots = get_all_available_equipment_slots() if(all_slots) @@ -354,39 +354,39 @@ if(slot in my_held_item_slots) continue var/obj/item/thing_in_slot = get_equipped_item(slot) - dat += "[capitalize(get_descriptive_slot_name(slot))]: [thing_in_slot || "nothing"]" + dat += "[capitalize(get_descriptive_slot_name(slot))]: [thing_in_slot || "nothing"]" if(istype(thing_in_slot, /obj/item/clothing)) var/obj/item/clothing/C = thing_in_slot if(LAZYLEN(C.accessories)) - dat += "Remove accessory" + dat += "Remove accessory" // Do they get an option to set internals? if(istype(get_equipped_item(slot_wear_mask_str), /obj/item/clothing/mask) || istype(get_equipped_item(slot_head_str), /obj/item/clothing/head/helmet/space)) for(var/slot in list(slot_back_str, slot_belt_str, slot_s_store_str)) var/obj/item/tank/tank = get_equipped_item(slot) if(istype(tank)) - dat += "
    Toggle internals." + dat += "
    Toggle internals." break // Other incidentals. var/obj/item/clothing/suit = get_equipped_item(slot_w_uniform_str) if(istype(suit)) - dat += "
    Pockets: Empty or Place Item" + dat += "
    Pockets: Empty or Place Item" var/obj/item/clothing/sensor/vitals/sensor = get_vitals_sensor() if(sensor) if(sensor.get_sensors_locked()) - dat += "
    Unlock vitals sensors" + dat += "
    Unlock vitals sensors" else if(user.get_multitool()) - dat += "
    Lock vitals sensors" - dat += "
    Set vitals sensors" + dat += "
    Lock vitals sensors" + dat += "
    Set vitals sensors" if(get_equipped_item(slot_handcuffed_str)) - dat += "
    Handcuffed" + dat += "
    Handcuffed" var/list/strip_add = get_additional_stripping_options() if(length(strip_add)) dat += strip_add - dat += "
    Refresh" + dat += "
    Refresh" var/datum/browser/popup = new(user, "[name]", "Inventory of \the [name]", 325, 500, src) popup.set_content(jointext(dat, "
    ")) diff --git a/code/modules/modular_computers/file_system/programs/generic/email_client.dm b/code/modules/modular_computers/file_system/programs/generic/email_client.dm index dd73361bea8..61536217f86 100644 --- a/code/modules/modular_computers/file_system/programs/generic/email_client.dm +++ b/code/modules/modular_computers/file_system/programs/generic/email_client.dm @@ -83,7 +83,7 @@ msg += "Subject: [received_message.title]\nMessage:\n[digitalPencode2html(received_message.stored_data)]\n" if(received_message.attachment) msg += "Attachment: [received_message.attachment.filename].[received_message.attachment.filetype] ([received_message.attachment.size]GQ)\n" - msg += "Reply\n" + msg += "Reply\n" msg += "*--*" to_chat(L, jointext(msg, null)) diff --git a/code/modules/organs/external/diagnostics.dm b/code/modules/organs/external/diagnostics.dm index 1b74273117b..b3eddf17daa 100644 --- a/code/modules/organs/external/diagnostics.dm +++ b/code/modules/organs/external/diagnostics.dm @@ -189,7 +189,7 @@ /decl/diagnostic_sign/proc/get_description(mob/user) . = descriptor if(user && user.skill_check(SKILL_MEDICAL, hint_min_skill)) - . += "(?)" + . += "(?)" /decl/diagnostic_sign/Topic(var/href, var/list/href_list) . = ..() diff --git a/code/modules/overmap/ships/computers/ship.dm b/code/modules/overmap/ships/computers/ship.dm index 396a4fe2172..f6ccc699ebd 100644 --- a/code/modules/overmap/ships/computers/ship.dm +++ b/code/modules/overmap/ships/computers/ship.dm @@ -33,7 +33,7 @@ somewhere on that shuttle. Subtypes of these can be then used to perform ship ov /obj/machinery/computer/ship/proc/display_reconnect_dialog(var/mob/user, var/flavor) var/datum/browser/written_digital/popup = new (user, "[src]", "[src]") - popup.set_content("
    Error
    Unable to connect to [flavor].
    Reconnect
    ") + popup.set_content("
    Error
    Unable to connect to [flavor].
    Reconnect
    ") popup.open() /obj/machinery/computer/ship/interface_interact(var/mob/user) diff --git a/code/modules/paperwork/adminpaper.dm b/code/modules/paperwork/adminpaper.dm index a6a1cf86f12..11891f5d55a 100644 --- a/code/modules/paperwork/adminpaper.dm +++ b/code/modules/paperwork/adminpaper.dm @@ -30,14 +30,14 @@ //Snapshot is crazy and likes putting each topic hyperlink on a seperate line from any other tags so it's nice and clean. interactions += "
    The fax will transmit everything above this line
    " - interactions += "Send fax " - interactions += "Pen mode: [isCrayon ? "Crayon" : "Pen"] " - interactions += "Cancel fax " + interactions += "Send fax " + interactions += "Pen mode: [isCrayon ? "Crayon" : "Pen"] " + interactions += "Cancel fax " interactions += "
    " - interactions += "Change logo " - interactions += "Toggle Header " - interactions += "Toggle Footer " - interactions += "Clear page " + interactions += "Change logo " + interactions += "Toggle Header " + interactions += "Toggle Footer " + interactions += "Clear page " interactions += "
    " /obj/item/paper/admin/proc/generateHeader() diff --git a/code/modules/paperwork/clipboard.dm b/code/modules/paperwork/clipboard.dm index 8226110bb9a..5aad53384cb 100644 --- a/code/modules/paperwork/clipboard.dm +++ b/code/modules/paperwork/clipboard.dm @@ -98,19 +98,19 @@ /obj/item/clipboard/interact(mob/user) var/dat = "Clipboard" if(stored_pen) - dat += "Remove Pen

    " + dat += "Remove Pen

    " else - dat += "Add Pen

    " + dat += "Add Pen

    " dat += "
    [jointext(words, null)]
    " for(var/i = 1 to LAZYLEN(papers)) var/obj/item/P = papers[i] - dat += "" + dat += "" if(i == 1) - dat += "" + dat += "" else dat += "" + dat += "" dat += "
    [P.name]
    [P.name]WriteWrite" - dat += "RemoveRename
    RemoveRename
    " user.set_machine(src) diff --git a/code/modules/paperwork/faxmachine.dm b/code/modules/paperwork/faxmachine.dm index 331c94acae6..85f24feac70 100644 --- a/code/modules/paperwork/faxmachine.dm +++ b/code/modules/paperwork/faxmachine.dm @@ -679,8 +679,8 @@ var/global/list/adminfaxes = list() //cache for faxes that have been sent to reply_type = "UNKNOWN" var/msg = "[faxname]: [get_options_bar(sender, 2,1,1)]" - msg += "(TAKE) (REPLY): " - msg += "Receiving '[rcvdcopy.name]' via secure connection ... view message" + msg += "(TAKE) (REPLY)
    : " + msg += "Receiving '[rcvdcopy.name]' via secure connection ... view message" if (istype(doc, /obj/item/paper)) var/obj/item/paper/paper = doc diff --git a/code/modules/paperwork/filingcabinet.dm b/code/modules/paperwork/filingcabinet.dm index 4e728b71bd9..c63df5d0d77 100644 --- a/code/modules/paperwork/filingcabinet.dm +++ b/code/modules/paperwork/filingcabinet.dm @@ -42,7 +42,7 @@ user.set_machine(src) var/dat = "
    " for(var/obj/item/P in src) - dat += "" + dat += "" dat += "
    [P.name]
    [P.name]
    " show_browser(user, "[name][dat]", "window=filingcabinet;size=350x300") diff --git a/code/modules/paperwork/folders.dm b/code/modules/paperwork/folders.dm index 392d25940da..38ea557a765 100644 --- a/code/modules/paperwork/folders.dm +++ b/code/modules/paperwork/folders.dm @@ -59,7 +59,7 @@ /obj/item/folder/interact(mob/user) var/dat = "[name]" for(var/obj/item/I in src) - dat += "Remove Rename - [I.name]
    " + dat += "Remove Rename - [I.name]
    " user.set_machine(src) show_browser(user, dat, "window=[initial(name)]") diff --git a/code/modules/paperwork/paper.dm b/code/modules/paperwork/paper.dm index 46715f7d9df..0d32e6b7005 100644 --- a/code/modules/paperwork/paper.dm +++ b/code/modules/paperwork/paper.dm @@ -224,8 +224,8 @@ info_links = info var/i = 0 for(i=1,i<=fields,i++) - addtofield(i, "write", 1) - info_links = info_links + "write" + addtofield(i, "write", 1) + info_links = info_links + "write" /obj/item/paper/proc/clearpaper() info = null diff --git a/code/modules/paperwork/paper_bundle.dm b/code/modules/paperwork/paper_bundle.dm index 4769dde6c61..11e8c049dd4 100644 --- a/code/modules/paperwork/paper_bundle.dm +++ b/code/modules/paperwork/paper_bundle.dm @@ -200,30 +200,30 @@ dat = "" dat += "" dat += "" - dat += "" + dat += "" dat += "" dat += "" diff --git a/code/modules/paperwork/photography.dm b/code/modules/paperwork/photography.dm index 6bec2c86ccc..f416d7fda01 100644 --- a/code/modules/paperwork/photography.dm +++ b/code/modules/paperwork/photography.dm @@ -132,7 +132,8 @@ var/photo_html = {" [name] - + // todo: remove -ms-interpolation-mode once 516 is required + [scribble ? "
    Written on the back:
    [scribble]" : ""] "} diff --git a/code/modules/persistence/noticeboards.dm b/code/modules/persistence/noticeboards.dm index c0e2095187c..fcc44e0f473 100644 --- a/code/modules/persistence/noticeboards.dm +++ b/code/modules/persistence/noticeboards.dm @@ -96,10 +96,10 @@ for(var/thing in notices) LAZYADD(dat, "") + LAZYADD(dat, "Look") + LAZYADD(dat, "Remove") var/datum/browser/popup = new(user, "noticeboard-\ref[src]", "Noticeboard") popup.set_content(jointext(dat, null)) diff --git a/code/modules/power/singularity/particle_accelerator/particle_control.dm b/code/modules/power/singularity/particle_accelerator/particle_control.dm index ef3868e9d5d..4f3f45ee931 100644 --- a/code/modules/power/singularity/particle_accelerator/particle_control.dm +++ b/code/modules/power/singularity/particle_accelerator/particle_control.dm @@ -115,7 +115,7 @@ if(strength > strength_upper_limit) strength = strength_upper_limit else - message_admins("PA Control Computer increased to [strength] by [key_name(usr, usr.client)](?) in ([x],[y],[z] - JMP)",0,1) + message_admins("PA Control Computer increased to [strength] by [key_name(usr, usr.client)](?) in ([x],[y],[z] - JMP)",0,1) log_game("PA Control Computer increased to [strength] by [usr.ckey]([usr]) in ([x],[y],[z])") investigate_log("increased to [strength] by [usr.key]","singulo") strength_change() @@ -126,7 +126,7 @@ if(strength < 0) strength = 0 else - message_admins("PA Control Computer decreased to [strength] by [key_name(usr, usr.client)](?) in ([x],[y],[z] - JMP)",0,1) + message_admins("PA Control Computer decreased to [strength] by [key_name(usr, usr.client)](?) in ([x],[y],[z] - JMP)",0,1) log_game("PA Control Computer decreased to [strength] by [usr.ckey]([usr]) in ([x],[y],[z])") investigate_log("decreased to [strength] by [usr.key]","singulo") strength_change() @@ -205,7 +205,7 @@ /obj/machinery/particle_accelerator/control_box/toggle_power() src.active = !src.active investigate_log("turned [active?"ON":"OFF"] by [usr ? usr.key : "outside forces"]","singulo") - message_admins("PA Control Computer turned [active ?"ON":"OFF"] by [key_name(usr, usr.client)](?) in ([x],[y],[z] - JMP)",0,1) + message_admins("PA Control Computer turned [active ?"ON":"OFF"] by [key_name(usr, usr.client)](?) in ([x],[y],[z] - JMP)",0,1) log_game("PA Control Computer turned [active ?"ON":"OFF"] by [usr.ckey]([usr]) in ([x],[y],[z])") if(src.active) update_use_power(POWER_USE_ACTIVE) @@ -232,11 +232,11 @@ var/dat = "" dat += "Particle Accelerator Control Panel
    " - dat += "Close

    " + dat += "Close

    " dat += "Status:
    " if(!assembled) dat += "Unable to detect all parts!
    " - dat += "Run Scan

    " + dat += "Run Scan

    " else dat += "All parts in place.

    " dat += "Power:" @@ -244,9 +244,9 @@ dat += "On
    " else dat += "Off
    " - dat += "Toggle Power

    " + dat += "Toggle Power

    " dat += "Particle Strength: [src.strength] " - dat += "--|++

    " + dat += "--|++

    " show_browser(user, dat, "window=pacontrol;size=420x500") onclose(user, "pacontrol") diff --git a/code/modules/power/singularity/singularity.dm b/code/modules/power/singularity/singularity.dm index 004052a0ffb..6482521407e 100644 --- a/code/modules/power/singularity/singularity.dm +++ b/code/modules/power/singularity/singularity.dm @@ -41,7 +41,7 @@ var/global/list/singularities = list() var/found_containment = locate(/obj/effect/containment_field) in orange(30, src) if(!found_containment) last_warning = world.time - message_admins("A singulo has been created without containment fields active ([x], [y], [z] - JMP).") + message_admins("A singulo has been created without containment fields active ([x], [y], [z] - JMP).") investigate_log("was created. [found_containment ? "" : "No containment fields were active."]", investigation_label) current_stage = GET_DECL(/decl/singularity_stage/stage_one) energy = starting_energy diff --git a/code/modules/power/smes_construction.dm b/code/modules/power/smes_construction.dm index 54e525496c0..e685cc0e8dc 100644 --- a/code/modules/power/smes_construction.dm +++ b/code/modules/power/smes_construction.dm @@ -155,7 +155,7 @@ var/obj/item/clothing/gloves/G = h_user.get_equipped_item(slot_gloves_str) if(istype(G) && G.siemens_coefficient == 0) user_protected = 1 - log_and_message_admins("SMES FAILURE: [src.x]X [src.y]Y [src.z]Z User: [usr.ckey], Intensity: [intensity]/100 - JMP") + log_and_message_admins("SMES FAILURE: [src.x]X [src.y]Y [src.z]Z User: [usr.ckey], Intensity: [intensity]/100 - JMP") switch (intensity) if (0 to 15) diff --git a/code/modules/power/solar.dm b/code/modules/power/solar.dm index d6b41eab2be..c19ac1912e9 100644 --- a/code/modules/power/solar.dm +++ b/code/modules/power/solar.dm @@ -396,21 +396,21 @@ var/global/list/solars_list = list() t += "Tracking:
    " switch(track) if(0) - t += "Off Timed Auto
    " + t += "Off Timed Auto
    " if(1) - t += "Off Timed Auto
    " + t += "Off Timed Auto
    " if(2) - t += "Off Timed Auto
    " + t += "Off Timed Auto
    " t += "Tracking Rate: [rate_control(src,"tdir","[trackrate] deg/h ([trackrate<0 ? "CCW" : "CW"])",1,30,180)]

    " t += "Connected devices:
    " - t += "Search for devices
    " + t += "Search for devices
    " t += "Solar panels : [connected_panels.len] connected
    " t += "Solar tracker : [connected_tracker ? "Found" : "Not found"]

    " - t += "Close" + t += "Close" var/datum/browser/written_digital/popup = new(user, "solar", name) popup.set_content(t) @@ -515,7 +515,7 @@ var/global/list/solars_list = list() info = "

    Welcome

    At greencorps we love the environment, and space. With this package you are able to help mother nature and produce energy without any usage of fossil fuels! Singularity energy is dangerous while solar energy is safe, which is why it's better. Now here is how you setup your own solar array.

    You can make a solar panel by wrenching the solar assembly onto a cable node. Adding a glass panel, reinforced or regular glass will do, will finish the construction of your solar panel. It is that easy!

    Now after setting up 19 more of these solar panels you will want to create a solar tracker to keep track of our mother nature's gift, the sun. These are the same steps as before except you insert the tracker equipment circuit into the assembly before performing the final step of adding the glass. You now have a tracker! Now the last step is to add a computer to calculate the sun's movements and to send commands to the solar panels to change direction with the sun. Setting up the solar computer is the same as setting up any computer, so you should have no trouble in doing that. You do need to put a wire node under the computer, and the wire needs to be connected to the tracker.

    Congratulations, you should have a working solar array. If you are having trouble, here are some tips. Make sure all solar equipment are on a cable node, even the computer. You can always deconstruct your creations if you make a mistake.

    That's all to it, be safe, be green!

    " /proc/rate_control(var/S, var/V, var/C, var/Min=1, var/Max=5, var/Limit=null) //How not to name vars - var/href = "-"+rate+"[href]=[Limit]'>+" return rate diff --git a/code/modules/power/turbine.dm b/code/modules/power/turbine.dm index 6be4303ca1b..8fb0064ca70 100644 --- a/code/modules/power/turbine.dm +++ b/code/modules/power/turbine.dm @@ -168,9 +168,9 @@ t += "Turbine: [round(compressor.rpm)] RPM
    " - t += "Starter: [ compressor.starter ? "OffOn" : "OffOn"]" + t += "Starter: [ compressor.starter ? "OffOn" : "OffOn"]" - t += "
    Close" + t += "
    Close" t += "" show_browser(user, t, "window=turbine") @@ -225,14 +225,14 @@ var/dat if(src.compressor) dat += {"
    Gas turbine remote control system
    - \nTurbine status: [ src.compressor.starter ? "OffOn" : "OffOn"] + \nTurbine status: [ src.compressor.starter ? "OffOn" : "OffOn"] \n
    \nTurbine speed: [src.compressor.rpm]rpm
    \nPower currently being generated: [src.compressor.turbine.lastgen]W
    \nInternal gas temperature: [src.compressor.gas_contained.temperature]K
    - \nVent doors: [ src.door_status ? "ClosedOpen" : "ClosedOpen"] - \n
    View - \n
    Close + \nVent doors: [ src.door_status ? "ClosedOpen" : "ClosedOpen"] + \n
    View + \n
    Close \n
    \n"} else diff --git a/code/modules/projectiles/guns/energy/temperature.dm b/code/modules/projectiles/guns/energy/temperature.dm index 15cd979e5fd..933c6d2fff6 100644 --- a/code/modules/projectiles/guns/energy/temperature.dm +++ b/code/modules/projectiles/guns/energy/temperature.dm @@ -42,7 +42,7 @@ var/dat = {"Freeze Gun Configuration:
    Current output temperature: [temp_text]
    - Target output temperature: --- [current_temperature] +++
    + Target output temperature: --- [current_temperature] +++
    "} show_browser(user, dat, "window=freezegun;size=450x300;can_resize=1;can_close=1;can_minimize=1") diff --git a/code/modules/projectiles/guns/projectile/dartgun.dm b/code/modules/projectiles/guns/projectile/dartgun.dm index 16089ed5eaf..9ce230085f7 100644 --- a/code/modules/projectiles/guns/projectile/dartgun.dm +++ b/code/modules/projectiles/guns/projectile/dartgun.dm @@ -113,12 +113,12 @@ var/decl/material/R = GET_DECL(rtype) dat += "
    [REAGENT_VOLUME(B.reagents, rtype)] units of [R.get_reagent_name(B.reagents)], " if(B in mixing) - dat += "Mixing " + dat += "Mixing " else - dat += "Not mixing " + dat += "Not mixing " else dat += "nothing." - dat += " \[Eject\]
    " + dat += " \[Eject\]
    " if(ammo_magazine) var/stored_ammo_count = ammo_magazine?.get_stored_ammo_count() @@ -126,9 +126,9 @@ dat += "The dart cartridge has [stored_ammo_count] shot\s remaining." else dat += "The dart cartridge is empty!" - dat += " \[Eject\]
    " + dat += " \[Eject\]
    " - dat += "
    \[Refresh\]" + dat += "
    \[Refresh\]" var/datum/browser/popup = new(user, "dartgun", "[src] mixing control") popup.set_content(jointext(dat,null)) diff --git a/code/modules/reagents/Chemistry-Machinery.dm b/code/modules/reagents/Chemistry-Machinery.dm index 39aca0bc1ab..13e9eb97816 100644 --- a/code/modules/reagents/Chemistry-Machinery.dm +++ b/code/modules/reagents/Chemistry-Machinery.dm @@ -194,7 +194,7 @@ #define MAX_PILL_SPRITE 25 //max icon state of the pill sprites var/dat = "
    " if(cur_page > 1) - dat += "First" + dat += "First" else dat += "First" dat += "" if(cur_page > 1) - dat += "Previous" + dat += "Previous" else dat += "Previous" dat += "[cur_page]/[length(pages)] Remove[cur_page]/[length(pages)] Remove" if(cur_page < pages.len) - dat += "Next" + dat += "Next" else dat += "Next" dat += "" if(cur_page < pages.len) - dat += "Last" + dat += "Last" else dat += "Last" dat += "
    [thing]") if(istype(thing, /obj/item/paper)) - LAZYADD(dat, "ReadWrite") + LAZYADD(dat, "ReadWrite") else if(istype(thing, /obj/item/photo)) - LAZYADD(dat, "Look") - LAZYADD(dat, "Remove
    " for(var/i = 1 to MAX_PILL_SPRITE) - dat += "" + dat += "" dat += "
    " show_browser(user, dat, "window=chem_master") return @@ -226,7 +226,7 @@ . += "Blood Type: [LAZYACCESS(blood_data, "blood_type")]
    DNA: [LAZYACCESS(blood_data, "blood.DNA")]" else . += "[reagent.lore_text]" - . += "


    (Back)" + . += "


    (Back)" . = JOINTEXT(.) /obj/machinery/chem_master/proc/create_bottle(mob/user) @@ -261,16 +261,16 @@ if(!beaker) dat += "Please insert beaker.
    " if(loaded_pill_bottle?.storage) - dat += "Eject Pill Bottle \[[loaded_pill_bottle.contents.len]/[loaded_pill_bottle.storage.max_storage_space]\]

    " + dat += "Eject Pill Bottle \[[loaded_pill_bottle.contents.len]/[loaded_pill_bottle.storage.max_storage_space]\]

    " else dat += "No pill bottle inserted.

    " - dat += "Close" + dat += "Close" else var/datum/reagents/R = beaker.reagents - dat += "Eject beaker and Clear Buffer
    " - dat += "Toggle purification mode: [sloppy ? "Quick" : "Thorough"]
    " + dat += "Eject beaker and Clear Buffer
    " + dat += "Toggle purification mode: [sloppy ? "Quick" : "Thorough"]
    " if(loaded_pill_bottle?.storage) - dat += "Eject Pill Bottle \[[loaded_pill_bottle.contents.len]/[loaded_pill_bottle.storage.max_storage_space]\]

    " + dat += "Eject Pill Bottle \[[loaded_pill_bottle.contents.len]/[loaded_pill_bottle.storage.max_storage_space]\]

    " else dat += "No pill bottle inserted.

    " if(!R.total_volume) @@ -280,24 +280,24 @@ for(var/rtype in R.reagent_volumes) var/decl/material/G = GET_DECL(rtype) dat += "[G.use_name], [REAGENT_VOLUME(R, rtype)] Units - " - dat += "(Analyze) " - dat += "(1) " - dat += "(5) " - dat += "(10) " - dat += "(All) " - dat += "(Custom)
    " - - dat += "
    Transfer to [(!mode ? "disposal" : "beaker")]:
    " + dat += "(Analyze) " + dat += "(1) " + dat += "(5) " + dat += "(10) " + dat += "(All) " + dat += "(Custom)
    " + + dat += "
    Transfer to [(!mode ? "disposal" : "beaker")]:
    " if(reagents.total_volume) for(var/rtype in reagents.reagent_volumes) var/decl/material/N = GET_DECL(rtype) dat += "[N.use_name], [REAGENT_VOLUME(reagents, rtype)] Units - " - dat += "(Analyze) " - dat += "(1) " - dat += "(5) " - dat += "(10) " - dat += "(All) " - dat += "(Custom)
    " + dat += "(Analyze) " + dat += "(1) " + dat += "(5) " + dat += "(10) " + dat += "(All) " + dat += "(Custom)
    " else dat += "Empty
    " dat += extra_options() @@ -307,11 +307,11 @@ //Use to add extra stuff to the end of the menu. /obj/machinery/chem_master/proc/extra_options() . = list() - . += "

    Create pill (30 units max)
    " - . += "Create multiple pills
    " - . += "Create bottle (60 units max)" - . += "
    Bottle Label Color:\t▉" - . += "
    Bottle Lid Color:\t▉" + . += "

    Create pill (30 units max)
    " + . += "Create multiple pills
    " + . += "Create bottle (60 units max)" + . += "
    Bottle Label Color:\t▉" + . += "
    Bottle Lid Color:\t▉" return JOINTEXT(.) /obj/machinery/chem_master/condimaster @@ -326,4 +326,4 @@ reagents.trans_to_obj(P,50) /obj/machinery/chem_master/condimaster/extra_options() - return "Create bottle (50 units max)" + return "Create bottle (50 units max)" diff --git a/code/modules/reagents/heat_sources/_heat_source.dm b/code/modules/reagents/heat_sources/_heat_source.dm index afd89161d21..dfc9f92aa5d 100644 --- a/code/modules/reagents/heat_sources/_heat_source.dm +++ b/code/modules/reagents/heat_sources/_heat_source.dm @@ -141,21 +141,21 @@ dat += "Target temperature:" if(target_temperature > min_temperature) - dat += "- " + dat += "- " dat += "[target_temperature - T0C]C" if(target_temperature < max_temperature) - dat += " +" + dat += " +" dat += "" dat += "Current temperature:[FLOOR(temperature - T0C)]C" dat += "Loaded container:" - dat += "[container ? "[container.name] ([FLOOR(container.temperature - T0C)]C) Remove" : "None."]" + dat += "[container ? "[container.name] ([FLOOR(container.temperature - T0C)]C) Remove" : "None."]" - dat += "Switched:[use_power == POWER_USE_ACTIVE ? "On" : "Off"]" + dat += "Switched:[use_power == POWER_USE_ACTIVE ? "On" : "Off"]" dat += "" var/datum/browser/popup = new(user, "\ref[src]-reagent_temperature_window", "[capitalize(name)]") diff --git a/code/modules/reagents/reagent_containers/borghydro.dm b/code/modules/reagents/reagent_containers/borghydro.dm index fe04dadb6f1..6e69142d458 100644 --- a/code/modules/reagents/reagent_containers/borghydro.dm +++ b/code/modules/reagents/reagent_containers/borghydro.dm @@ -94,7 +94,7 @@ if(mode == i) t += "[reagent_names[i]]" else - t += "[reagent_names[i]]" + t += "[reagent_names[i]]" t = "Available reagents: [t]." to_chat(user, t) diff --git a/code/modules/recycling/destination_tagger.dm b/code/modules/recycling/destination_tagger.dm index ab74cb34715..5953b1e5268 100644 --- a/code/modules/recycling/destination_tagger.dm +++ b/code/modules/recycling/destination_tagger.dm @@ -29,7 +29,7 @@ var/dat = "

    TagMaster 2.3


    " dat += "
    " - dat += "
    Current Selection:
    " + dat += "
    Current Selection:
    " dat += "
    " dat += "

    Tag History:

    " @@ -38,7 +38,7 @@ for(var/prevdest in last_used_tags) if(cnt % 4 == 0) dat += "" - dat += "[prevdest]" + dat += "[prevdest]" ++cnt dat += "
    " diff --git a/code/modules/recycling/disposal.dm b/code/modules/recycling/disposal.dm index 380350ea368..731fd5169f2 100644 --- a/code/modules/recycling/disposal.dm +++ b/code/modules/recycling/disposal.dm @@ -231,18 +231,18 @@ var/global/list/diversion_junctions = list() if(!ai) // AI can't pull flush handle if(flush) - dat += "Disposal handle: Disengage Engaged" + dat += "Disposal handle: Disengage Engaged" else - dat += "Disposal handle: Disengaged Engage" + dat += "Disposal handle: Disengaged Engage" - dat += "

    Eject contents
    " + dat += "

    Eject contents
    " if(mode <= 0) - dat += "Pump: Off On
    " + dat += "Pump: Off On
    " else if(mode == 1) - dat += "Pump: Off On (pressurizing)
    " + dat += "Pump: Off On (pressurizing)
    " else - dat += "Pump: Off On (idle)
    " + dat += "Pump: Off On (idle)
    " var/per = 100* air_contents.return_pressure() / (SEND_PRESSURE) diff --git a/code/modules/security levels/keycard_authentication.dm b/code/modules/security levels/keycard_authentication.dm index 6af4ec58fdc..3e65d1a901e 100644 --- a/code/modules/security levels/keycard_authentication.dm +++ b/code/modules/security levels/keycard_authentication.dm @@ -75,21 +75,21 @@ dat += "
  • Cannot modify the alert level at this time: [security_state.severe_security_level.name] engaged.
  • " else if(security_state.current_security_level == security_state.high_security_level) - dat += "
  • Disengage [security_state.high_security_level.name]
  • " + dat += "
  • Disengage [security_state.high_security_level.name]
  • " else - dat += "
  • Engage [security_state.high_security_level.name]
  • " + dat += "
  • Engage [security_state.high_security_level.name]
  • " if(!get_config_value(/decl/config/toggle/ert_admin_call_only)) - dat += "
  • Emergency Response Team
  • " + dat += "
  • Emergency Response Team
  • " - dat += "
  • Grant Emergency Maintenance Access
  • " - dat += "
  • Revoke Emergency Maintenance Access
  • " - dat += "
  • Grant Nuclear Authorization Code
  • " + dat += "
  • Grant Emergency Maintenance Access
  • " + dat += "
  • Revoke Emergency Maintenance Access
  • " + dat += "
  • Grant Nuclear Authorization Code
  • " dat += "" show_browser(user, dat, "window=keycard_auth;size=500x250") if(screen == 2) dat += "Please swipe your card to authorize the following event: [event]" - dat += "

    Back" + dat += "

    Back" show_browser(user, dat, "window=keycard_auth;size=500x250") return diff --git a/code/modules/spells/artifacts/spellbound_servants.dm b/code/modules/spells/artifacts/spellbound_servants.dm index f9306397e93..2c8f93815c8 100644 --- a/code/modules/spells/artifacts/spellbound_servants.dm +++ b/code/modules/spells/artifacts/spellbound_servants.dm @@ -208,7 +208,7 @@ var/decl/ghosttrap/G = GET_DECL(/decl/ghosttrap/wizard_familiar) for(var/mob/observer/ghost/ghost in global.player_list) if(G.assess_candidate(ghost,null,FALSE)) - to_chat(ghost, "[SPAN_NOTICE("A wizard is requesting a Spell-Bound Servant!")] (Join)") + to_chat(ghost, "[SPAN_NOTICE("A wizard is requesting a Spell-Bound Servant!")] (Join)") return TRUE /obj/effect/cleanable/spellbound/CanUseTopic(var/mob) diff --git a/code/modules/tools/archetypes/tool_item.dm b/code/modules/tools/archetypes/tool_item.dm index 46bdb6f427c..0f3310a89a2 100644 --- a/code/modules/tools/archetypes/tool_item.dm +++ b/code/modules/tools/archetypes/tool_item.dm @@ -73,7 +73,7 @@ var/decl/tool_archetype/tool_archetype = GET_DECL(tool_type) var/tool_string = tool_archetype.get_tool_quality_descriptor(tool.tool_values[tool_type]) if(tool_archetype.codex_key) - tool_string = "[tool_string]" + tool_string = "[tool_string]" LAZYADD(tool_strings, tool_string) if(length(tool_strings)) to_chat(user, "[gender == PLURAL ? "They look" : "It looks"] like [english_list(tool_strings)].") diff --git a/code/modules/turbolift/turbolift_console.dm b/code/modules/turbolift/turbolift_console.dm index e570d0421ea..8d34b659309 100644 --- a/code/modules/turbolift/turbolift_console.dm +++ b/code/modules/turbolift/turbolift_console.dm @@ -110,15 +110,15 @@ var/datum/turbolift_floor/floor = lift.floors[i] var/label = floor.label? floor.label : "Level #[i]" dat += "" - dat += "[label]: [floor.name]
    " + dat += "[label]: [floor.name]

    " dat += "


    " if(LAZYLEN(lift.doors)) if(lift.doors_are_open()) - dat += "Close Doors
    " + dat += "Close Doors
    " else - dat += "Open Doors
    " - dat += "Emergency Stop" + dat += "Open Doors
    " + dat += "Emergency Stop" dat += "
    " var/datum/browser/written_digital/popup = new(user, "turbolift_panel", "Lift Panel", 230, 260) diff --git a/code/modules/vehicles/cargo_train.dm b/code/modules/vehicles/cargo_train.dm index 381667436a7..d2ab6861d6d 100644 --- a/code/modules/vehicles/cargo_train.dm +++ b/code/modules/vehicles/cargo_train.dm @@ -168,7 +168,7 @@ to_chat(D, "You ran over \the [victim]!") visible_message("\The [src] ran over \the [victim]!") attack_log += text("\[[time_stamp()]\] ran over [victim.name] ([victim.ckey]), driven by [D.name] ([D.ckey])") - msg_admin_attack("[D.name] ([D.ckey]) ran over [victim.name] ([victim.ckey]). (JMP)") + msg_admin_attack("[D.name] ([D.ckey]) ran over [victim.name] ([victim.ckey]). (JMP)") else attack_log += text("\[[time_stamp()]\] ran over [victim.name] ([victim.ckey])") diff --git a/code/modules/vehicles/train.dm b/code/modules/vehicles/train.dm index 23975a13955..3d82b225205 100644 --- a/code/modules/vehicles/train.dm +++ b/code/modules/vehicles/train.dm @@ -67,7 +67,7 @@ if(ishuman(load)) var/mob/living/D = load to_chat(D, "You hit [M]!") - msg_admin_attack("[D.name] ([D.ckey]) hit [M.name] ([M.ckey]) with [src]. (JMP)") + msg_admin_attack("[D.name] ([D.ckey]) hit [M.name] ([M.ckey]) with [src]. (JMP)") //------------------------------------------- diff --git a/code/modules/xenoarcheaology/artifacts/standalone/replicator.dm b/code/modules/xenoarcheaology/artifacts/standalone/replicator.dm index 53a2d7655a1..ec01c88cba6 100644 --- a/code/modules/xenoarcheaology/artifacts/standalone/replicator.dm +++ b/code/modules/xenoarcheaology/artifacts/standalone/replicator.dm @@ -121,7 +121,7 @@ var/dat = "The control panel displays an incomprehensible selection of controls, many with unusual markings or text around them.
    " dat += "
    " for(var/index=1, index<=construction.len, index++) - dat += "\[[construction[index]]\]
    " + dat += "\[[construction[index]]\]
    " show_browser(user, dat, "window=alien_replicator") diff --git a/code/modules/xenoarcheaology/tools/depth_scanner.dm b/code/modules/xenoarcheaology/tools/depth_scanner.dm index 1b497372ec9..a26253156a0 100644 --- a/code/modules/xenoarcheaology/tools/depth_scanner.dm +++ b/code/modules/xenoarcheaology/tools/depth_scanner.dm @@ -72,7 +72,7 @@ /obj/item/depth_scanner/interact(var/mob/user) var/dat = "Coordinates with positive matches
    " - dat += "== Clear all ==
    " + dat += "== Clear all ==
    " if(current) dat += "Time: [current.time]
    " @@ -84,7 +84,7 @@ dat += "Anomaly material: [responsive_carriers[current.material]]
    " else dat += "Anomaly material: Unknown
    " - dat += "clear entry
    " + dat += "clear entry
    " else dat += "Select an entry from the list
    " dat += "



    " @@ -92,12 +92,12 @@ if(positive_locations.len) for(var/index = 1 to positive_locations.len) var/datum/depth_scan/D = positive_locations[index] - dat += "[D.time], coords: [D.coords]
    " + dat += "[D.time], coords: [D.coords]
    " else dat += "No entries recorded." dat += "
    " - dat += "Refresh
    " + dat += "Refresh
    " var/datum/browser/popup = new(user, "depth_scanner", "Results", 300, 500) popup.set_content(dat) popup.open() diff --git a/mods/content/matchmaking/matchmaker.dm b/mods/content/matchmaking/matchmaker.dm index 75327f3f35c..3dbf0f2ff3d 100644 --- a/mods/content/matchmaking/matchmaker.dm +++ b/mods/content/matchmaking/matchmaker.dm @@ -193,11 +193,11 @@ var/global/datum/matchmaker/matchmaker = new() for(var/datum/relation/R in relations) dat += "[R.other.finalized ? "\[F\] " : ""][R.other.holder], [R.other.holder.role_alt_title ? R.other.holder.role_alt_title : R.other.holder.assigned_role]." if (!R.finalized) - dat += " Remove" + dat += " Remove" editable = 1 dat += "
    [R.desc]" dat += "
    " - dat += "Things they know about you:[!R.finalized ?"Edit" : ""]
    [R.info ? "[R.info]" : " Nothing specific."]" + dat += "Things they know about you:[!R.finalized ?"Edit" : ""]
    [R.info ? "[R.info]" : " Nothing specific."]" if(R.other.info) dat += "
    Things you know about them:
    [R.other.info]
    [R.other.holder.gen_relations_info]" dat += "
    " @@ -209,7 +209,7 @@ var/global/datum/matchmaker/matchmaker = new() var/datum/browser/popup = new(usr, "relations", "Relationship Info") if(editable) - dat.Insert(1,"Finalize edits and close
    ") + dat.Insert(1,"Finalize edits and close
    ") popup.set_window_options("focus=0;can_close=0;can_minimize=1;can_maximize=0;can_resize=1;titlebar=1;") popup.set_content(jointext(dat,null)) popup.open() diff --git a/mods/content/matchmaking/relations.dm b/mods/content/matchmaking/relations.dm index 51d4c76e4d6..74e11a360d2 100644 --- a/mods/content/matchmaking/relations.dm +++ b/mods/content/matchmaking/relations.dm @@ -29,7 +29,7 @@ .=list() . += "Characters with enabled relations are paired up randomly after spawn. You can terminate relations when you first open relations info window, but after that it's final." . += "
    " - . += "
    What do they know about you? This is the general info that all kinds of your connections would know. Edit" + . += "
    What do they know about you? This is the general info that all kinds of your connections would know. Edit" . += "
    [pref.relations_info["general"] ? pref.relations_info["general"] : "Nothing specific."]" . += "
    " for(var/T in subtypesof(/datum/relation)) @@ -37,12 +37,12 @@ . += "[initial(R.name)]\t" if(initial(R.name) in pref.relations) . += "On" - . += "Off" + . += "Off" else - . += "On" + . += "On" . += "Off" . += "
    [initial(R.desc)]" - . += "
    What do they know about you?Edit" + . += "
    What do they know about you?Edit" . += "
    [pref.relations_info[initial(R.name)] ? pref.relations_info[initial(R.name)] : "Nothing specific."]" . += "
    " . = jointext(.,null) diff --git a/mods/content/mouse_highlights/mouse_highlight_prefs.dm b/mods/content/mouse_highlights/mouse_highlight_prefs.dm index eaf4daab8eb..756c25c98df 100644 --- a/mods/content/mouse_highlights/mouse_highlight_prefs.dm +++ b/mods/content/mouse_highlights/mouse_highlight_prefs.dm @@ -8,7 +8,7 @@ var/global/const/PREF_SHOW_HOLD_SHIFT = "While Holding Shift" /datum/category_item/player_setup_item/player_global/ui/OnTopic(var/href,var/list/href_list, var/mob/user) . = ..() if(.) - return + return if(href_list["select_mouseover_color"]) var/UI_mouseover_color_new = input(user, "Choose mouseover color, dark colors are not recommended!", "Global Preference", pref.UI_mouseover_color) as color|null if(isnull(UI_mouseover_color_new) || !CanUseTopic(user)) return TOPIC_NOACTION @@ -27,11 +27,11 @@ var/global/const/PREF_SHOW_HOLD_SHIFT = "While Holding Shift" /datum/category_item/player_setup_item/player_global/ui/get_ui_table(var/mob/user) . = ..() || list() . += "UI Mouseover Color" - . += "[pref.UI_mouseover_color]" + . += "[pref.UI_mouseover_color]" . += "
    __
    " - . += "reset" + . += "reset" . += "" . += "UI Mouseover Opacity" - . += "[pref.UI_mouseover_alpha]" - . += "reset" + . += "[pref.UI_mouseover_alpha]" + . += "reset" . += "" diff --git a/mods/content/psionics/_psionics.dm b/mods/content/psionics/_psionics.dm index 48fa276085e..9092fd88ae6 100644 --- a/mods/content/psionics/_psionics.dm +++ b/mods/content/psionics/_psionics.dm @@ -7,8 +7,8 @@ if(isliving(M)) var/datum/ability_handler/psionics/psi = M.get_ability_handler(/datum/ability_handler/psionics) if(psi) - . += "Remove psionics.

    " - . += "Trigger latencies.
    " + . += "Remove psionics.

    " + . += "Trigger latencies.
    " . += "" for(var/faculty in list(PSI_COERCION, PSI_PSYCHOKINESIS, PSI_REDACTION, PSI_ENERGISTICS)) var/decl/psionic_faculty/faculty_decl = SSpsi.get_faculty(faculty) @@ -18,7 +18,7 @@ var/psi_title = global.psychic_ranks_to_strings[i] if(i == faculty_rank) psi_title = "[psi_title]" - . += "" + . += "" . += "" . += "
    [psi_title][psi_title]
    " else diff --git a/mods/content/psionics/machines/psimeter.dm b/mods/content/psionics/machines/psimeter.dm index f74249580a9..22b1de43259 100644 --- a/mods/content/psionics/machines/psimeter.dm +++ b/mods/content/psionics/machines/psimeter.dm @@ -33,7 +33,7 @@ var/found for(var/mob/living/H in range(1, src)) found = TRUE - dat += "[H.name]Conduct Assay" + dat += "[H.name]Conduct Assay" if(!found) dat += "No candidates found." dat += "" diff --git a/mods/content/psionics/machines/psimonitor.dm b/mods/content/psionics/machines/psimonitor.dm index a194b5769ab..de83ed6b114 100644 --- a/mods/content/psionics/machines/psimonitor.dm +++ b/mods/content/psionics/machines/psimonitor.dm @@ -78,9 +78,9 @@ var/list/dat = list() dat += "

    Psi Dampener Monitor

    " if(authorized) - dat += "[authorized]Logout" + dat += "[authorized]Logout" else - dat += "Login" + dat += "Login" dat += "

    Active Psionic Dampeners


    " dat += "
    " @@ -93,21 +93,21 @@ if(implant.malfunction) dat += "" else - dat += "" + dat += "" dat += "" dat += "
    ERRORERROR[implant.overload]%[authorized ? "[implant.psi_mode]" : "[implant.psi_mode]"][implant.overload]%[authorized ? "[implant.psi_mode]" : "[implant.psi_mode]"]

    " if(show_violations) - dat += "

    Psionic Control Violations -


    " + dat += "

    Psionic Control Violations -


    " if(psi_violations.len) for(var/i = 1 to psi_violations.len) var/entry = psi_violations[i] - dat += "" + dat += "" else dat += "" dat += "

    [entry]
    [authorized ? "Remove" : ""]

    [entry]
    [authorized ? "Remove" : ""]
    None reported.

    " else - dat += "

    Psionic Control Violations +


    " + dat += "

    Psionic Control Violations +


    " var/datum/browser/written_digital/popup = new(user, "psi_monitor_\ref[src]", "Psi-Monitor") popup.set_content(jointext(dat,null)) diff --git a/mods/content/psionics/system/psionics/mob/mob_assay.dm b/mods/content/psionics/system/psionics/mob/mob_assay.dm index c0b05f74596..ad655cae3bd 100644 --- a/mods/content/psionics/system/psionics/mob/mob_assay.dm +++ b/mods/content/psionics/system/psionics/mob/mob_assay.dm @@ -87,7 +87,7 @@ dat += "[use_He_has] no notable psychic latency or operancy." if(istype(machine)) - dat += "Print Clear Buffer" + dat += "Print Clear Buffer" machine.last_assay = dat return diff --git a/mods/content/shackles/laws_pref.dm b/mods/content/shackles/laws_pref.dm index 84514909053..308d2342b23 100644 --- a/mods/content/shackles/laws_pref.dm +++ b/mods/content/shackles/laws_pref.dm @@ -47,11 +47,11 @@ . += "Shackle: " if(!pref.is_shackled) . += "Off" - . += "On" + . += "On" . += "
    Only shackled synthetics have laws." . += "
    " else - . += "Off" + . += "Off" . += "On" . += "
    You are shackled and have laws that restrict your behaviour." . += "
    " @@ -64,7 +64,7 @@ for(var/i in 1 to pref.laws.len) . += "[i]) [pref.laws[i]]
    " - . += "Law sets: Load Set
    " + . += "Law sets: Load Set
    " . = jointext(.,null) diff --git a/mods/gamemodes/cult/runes.dm b/mods/gamemodes/cult/runes.dm index e8b2c869224..86434cdfa65 100644 --- a/mods/gamemodes/cult/runes.dm +++ b/mods/gamemodes/cult/runes.dm @@ -128,7 +128,7 @@ if(!cult.can_become_antag(target.mind, 1)) to_chat(target, SPAN_DANGER("Are you going insane?")) else - to_chat(target, SPAN_OCCULT("Do you want to join the cult of Nar'Sie? You can choose to ignore offer... Join the cult.")) + to_chat(target, SPAN_OCCULT("Do you want to join the cult of Nar'Sie? You can choose to ignore offer... Join the cult.")) spamcheck = 1 spawn(40) @@ -230,8 +230,8 @@ for(var/obj/effect/rune/teleport/T in cult.teleport_runes) if(T == src) continue - t += "[T.destination]" - to_chat(user, "Teleport runes: [english_list(t, nothing_text = "no other runes exist")]... or return from this rune.") + t += "[T.destination]" + to_chat(user, "Teleport runes: [english_list(t, nothing_text = "no other runes exist")]... or return from this rune.") /obj/effect/rune/teleport/proc/leaveRune(var/mob/living/user) if(user.loc != src) diff --git a/mods/gamemodes/cult/special_role.dm b/mods/gamemodes/cult/special_role.dm index fe7a4401341..4f25ddeb6d2 100644 --- a/mods/gamemodes/cult/special_role.dm +++ b/mods/gamemodes/cult/special_role.dm @@ -134,7 +134,7 @@ if(!iscultist(M) || !M.mind) return - to_chat(M, "Do you want to abandon the cult of Nar'Sie? ACCEPT") + to_chat(M, "Do you want to abandon the cult of Nar'Sie? ACCEPT") /decl/special_role/cultist/Topic(href, href_list) if(href_list["confirmleave"]) diff --git a/mods/gamemodes/deity/forms/starlight/structures.dm b/mods/gamemodes/deity/forms/starlight/structures.dm index ed147b4db70..2f9e602e98c 100644 --- a/mods/gamemodes/deity/forms/starlight/structures.dm +++ b/mods/gamemodes/deity/forms/starlight/structures.dm @@ -104,7 +104,7 @@ html += "" for(var/a in possible_forms) var/list/form = possible_forms[a] - html += "" + html += "" html += "
    NameDescription
    [a][form["description"]]
    [a][form["description"]]
    " show_browser(linked_god, jointext(html, null), "window=gateway") @@ -142,7 +142,7 @@ to_chat(usr, SPAN_NOTICE("\The [src] is now looking for a [looking_for].")) for(var/l in get_turf(linked_god)) if(istype(l, /mob/living/starlight_soul)) - to_chat(l, "\The [src] is looking for a soul to become a [looking_for]. Accept? (Yes)") + to_chat(l, "\The [src] is looking for a soul to become a [looking_for]. Accept? (Yes)") addtimer(CALLBACK(src, PROC_REF(stop_looking_for), FALSE), 30 SECONDS) show_browser(linked_god, null, "window=gateway") return TOPIC_HANDLED diff --git a/mods/gamemodes/deity/god_cultist_role.dm b/mods/gamemodes/deity/god_cultist_role.dm index 5085982851b..d1c5bced882 100644 --- a/mods/gamemodes/deity/god_cultist_role.dm +++ b/mods/gamemodes/deity/god_cultist_role.dm @@ -47,7 +47,7 @@ return 1 /decl/special_role/godcultist/get_extra_panel_options(var/datum/mind/player) - return "\[Select Deity\]" + return "\[Select Deity\]" /decl/special_role/godcultist/Topic(href, href_list) if(..()) @@ -102,5 +102,5 @@ //Make em wait a few seconds. src.visible_message("\The [src] bows their head down, muttering something.", SPAN_NOTICE("You send the message \"[msg]\" to your master.")) - to_chat(D, "\The [src] (J) prays, \"[msg]\"") + to_chat(D, "\The [src] (J) prays, \"[msg]\"") log_and_message_admins("dprayed, \"[msg]\" to \the [key_name(D)]") diff --git a/mods/gamemodes/deity/mobs/deity.dm b/mods/gamemodes/deity/mobs/deity.dm index 4f3063db19e..8da6bb3ff09 100644 --- a/mods/gamemodes/deity/mobs/deity.dm +++ b/mods/gamemodes/deity/mobs/deity.dm @@ -102,7 +102,7 @@ var/icon/god_icon = icon('icons/mob/mob.dmi', initial(G.pylon_icon_state)) send_rsc(src,god_icon, "[god_name].png") dat += {" - [god_name] + [god_name] [initial(G.info)] "} diff --git a/mods/gamemodes/deity/mobs/phenomena/starlight.dm b/mods/gamemodes/deity/mobs/phenomena/starlight.dm index d02c4ed6919..72a6f0dbf07 100644 --- a/mods/gamemodes/deity/mobs/phenomena/starlight.dm +++ b/mods/gamemodes/deity/mobs/phenomena/starlight.dm @@ -88,7 +88,7 @@ html += "" for(var/type in possible_forms) var/list/form = possible_forms[type] - html += "" + html += "" html += "
    NameDescription
    [type][form["description"]]
    [type][form["description"]]
    " show_browser(linked, jointext(html,null), "window=herald") diff --git a/mods/gamemodes/deity/overrides.dm b/mods/gamemodes/deity/overrides.dm index b742b46ef12..c052abdf9a2 100644 --- a/mods/gamemodes/deity/overrides.dm +++ b/mods/gamemodes/deity/overrides.dm @@ -22,6 +22,6 @@ M.take_damage(5, PAIN, do_update_health = FALSE) M.take_damage(1, BRUTE) if(prob(10)) //Only annoy them a /bit/ - to_chat(M, SPAN_DANGER("You feel your insides curdle and burn! \[Give Into Purity\]")) + to_chat(M, SPAN_DANGER("You feel your insides curdle and burn! \[Give Into Purity\]")) return TRUE return FALSE \ No newline at end of file diff --git a/mods/gamemodes/deity/structures/altar.dm b/mods/gamemodes/deity/structures/altar.dm index f4f96b48faf..5981e775b68 100644 --- a/mods/gamemodes/deity/structures/altar.dm +++ b/mods/gamemodes/deity/structures/altar.dm @@ -56,7 +56,7 @@ if(1) text = "Can't... resist. ... anymore." to_chat(linked_god, SPAN_WARNING("\The [target] is getting close to conversion!")) - to_chat(target, "[text]. Resist Conversion") + to_chat(target, "[text]. Resist Conversion") //Used for force conversion. diff --git a/mods/gamemodes/deity/structures/blood_forge.dm b/mods/gamemodes/deity/structures/blood_forge.dm index e206bdeb98a..3b23da40630 100644 --- a/mods/gamemodes/deity/structures/blood_forge.dm +++ b/mods/gamemodes/deity/structures/blood_forge.dm @@ -25,7 +25,7 @@ for(var/type in recipes) var/atom/a = type var/cost = recipes[type] - dat += "[initial(a.name)] - [cost]
    [initial(a.desc)]

    " + dat += "[initial(a.name)] - [cost]
    [initial(a.desc)]

    " show_browser(user, dat, "window=forge") return TRUE diff --git a/mods/gamemodes/deity/structures/pylon.dm b/mods/gamemodes/deity/structures/pylon.dm index 2d61c8c76bd..88d7f5ebce2 100644 --- a/mods/gamemodes/deity/structures/pylon.dm +++ b/mods/gamemodes/deity/structures/pylon.dm @@ -67,9 +67,9 @@ if(P == src || linked_god.pylon == P) continue P.audible_message("\The [P] resonates, \"[text]\"") - to_chat(linked_god, "[html_icon(src)] [M] (P) [verb], [linked_god.pylon == src ? "" : ""]\"[text]\"[linked_god.pylon == src ? "" : ""]") + to_chat(linked_god, "[html_icon(src)] [M] (P) [verb], [linked_god.pylon == src ? "" : ""]\"[text]\"[linked_god.pylon == src ? "" : ""]") if(linked_god.minions.len) for(var/minion in linked_god.minions) var/datum/mind/mind = minion if(mind.current && mind.current.eyeobj) //If it is currently having a vision of some sort - to_chat(mind.current,"[html_icon(src)] [M] (J) [verb], \"[text]\"") \ No newline at end of file + to_chat(mind.current,"[html_icon(src)] [M] (J) [verb], \"[text]\"") \ No newline at end of file diff --git a/mods/gamemodes/traitor/special_role.dm b/mods/gamemodes/traitor/special_role.dm index 98a10d3d23f..46842dee6a2 100644 --- a/mods/gamemodes/traitor/special_role.dm +++ b/mods/gamemodes/traitor/special_role.dm @@ -9,7 +9,7 @@ blocked_job_event_categories = list(ASSIGNMENT_COMPUTER) /decl/special_role/traitor/get_extra_panel_options(var/datum/mind/player) - return "\[set crystals\]\[spawn uplink\]" + return "\[set crystals\]\[spawn uplink\]" /decl/special_role/traitor/Topic(href, href_list) if (..()) diff --git a/mods/gamemodes/traitor/syndicatebeacon.dm b/mods/gamemodes/traitor/syndicatebeacon.dm index 498555b73a7..63ad135fb2c 100644 --- a/mods/gamemodes/traitor/syndicatebeacon.dm +++ b/mods/gamemodes/traitor/syndicatebeacon.dm @@ -32,7 +32,7 @@ var/decl/pronouns/pronouns = user.get_pronouns() dat += "Identity not found in operative database. What can the Syndicate do for you today, [pronouns.honorific] [user.name]?
    " if(!selfdestructing) - dat += "

    \"[pick("I want to switch teams.", "I want to work for you.", "Let me join you.", "I can be of use to you.", "You want me working for you, and here's why...", "Give me an objective.", "How's the 401k over at the Syndicate?")]\"
    " + dat += "

    \"[pick("I want to switch teams.", "I want to work for you.", "Let me join you.", "I can be of use to you.", "You want me working for you, and here's why...", "Give me an objective.", "How's the 401k over at the Syndicate?")]\"
    " dat += temptext show_browser(user, dat, "window=syndbeacon") onclose(user, "syndbeacon") diff --git a/mods/mobs/borers/datum/antagonist.dm b/mods/mobs/borers/datum/antagonist.dm index b98725e052e..c714ef8e1a1 100644 --- a/mods/mobs/borers/datum/antagonist.dm +++ b/mods/mobs/borers/datum/antagonist.dm @@ -23,7 +23,7 @@ spawn_announcement_delay = 5000 /decl/special_role/borer/get_extra_panel_options(var/datum/mind/player) - return "\[put in host\]" + return "\[put in host\]" /decl/special_role/borer/create_objectives(var/datum/mind/player) if(!..()) diff --git a/nano/templates/accounts_terminal.tmpl b/nano/templates/accounts_terminal.tmpl index ce3f41022b4..e425ed121d1 100644 --- a/nano/templates/accounts_terminal.tmpl +++ b/nano/templates/accounts_terminal.tmpl @@ -28,7 +28,7 @@

    Create Account

    - +