Skip to content
This repository was archived by the owner on May 22, 2025. It is now read-only.

Commit e4e5ba6

Browse files
compile... NOW
1 parent 32a255e commit e4e5ba6

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

code/_onclick/hud/hud.dm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ GLOBAL_LIST_INIT(available_ui_styles, list(
158158
/datum/hud/proc/client_refresh(datum/source)
159159
SIGNAL_HANDLER
160160
var/client/client = mymob.canon_client
161-
var/new_byond_version = client.byond_version
161+
var/new_byond_version = client.byond_version
162162
#if MIN_COMPILER_VERSION > 515
163163
#warn Fully change default relay_loc to "1,1", rather than changing it based on client version
164164
#endif

code/modules/admin/admin_investigate.dm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,6 @@
3939
if(!fexists(F))
4040
to_chat(src, span_danger("No [selected] logfile was found."), confidential=TRUE)
4141
return
42-
var/datum/browser/browser = new(user, "investigate[selected]", "Investigation of [selected]", 800, 300)
42+
var/datum/browser/browser = new(usr, "investigate[selected]", "Investigation of [selected]", 800, 300)
4343
browser.set_content(file2text(F))
4444
browser.open()

code/modules/admin/verbs/debug.dm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -950,7 +950,7 @@ GLOBAL_PROTECT(AdminProcCallSpamPrevention)
950950
set name = "Display Initialize(mapload) Log"
951951
set desc = "Displays a list of things that didn't handle Initialize(mapload) properly"
952952

953-
var/datum/browser/browser = new(user, "initlog", "Initialize Log", 500, 500)
953+
var/datum/browser/browser = new(usr, "initlog", "Initialize Log", 500, 500)
954954
browser.set_content(replacetext(SSatoms.InitLog(), "\n", "<br>"))
955955
browser.open()
956956

0 commit comments

Comments
 (0)