[MIRROR] Fixes saying nothing when you have no language (#861)
* Fixes saying nothing when you have no language * fix .rej * Update say.dm
This commit is contained in:
committed by
Poojawa
parent
43c05ad3da
commit
ad65636014
@@ -1,14 +0,0 @@
|
||||
diff a/code/modules/admin/admin_investigate.dm b/code/modules/admin/admin_investigate.dm (rejected hunks)
|
||||
@@ -1,4 +1,4 @@
|
||||
-atom/proc/investigate_log(message, subject)
|
||||
+/atom/proc/investigate_log(message, subject)
|
||||
if(!message || !subject)
|
||||
return
|
||||
var/F = file("[GLOB.log_directory]/[subject].html")
|
||||
@@ -18,4 +18,4 @@ atom/proc/investigate_log(message, subject)
|
||||
if(!fexists(F))
|
||||
to_chat(src, "<span class='danger'>No [subject] logfile was found.</span>")
|
||||
return
|
||||
- src << browse(F,"window=investigate[subject];size=800x300")
|
||||
\ No newline at end of file
|
||||
+ src << browse(F,"window=investigate[subject];size=800x300")
|
||||
@@ -1,19 +0,0 @@
|
||||
diff a/code/modules/admin/verbs/mapping.dm b/code/modules/admin/verbs/mapping.dm (rejected hunks)
|
||||
@@ -156,7 +156,7 @@ GLOBAL_LIST_INIT(admin_verbs_debug_mapping, list(
|
||||
|
||||
for(var/t in GLOB.active_turfs_startlist)
|
||||
var/turf/T = t
|
||||
- dat += "[T.x], [T.y], [T.z]\n"
|
||||
+ dat += "[ADMIN_COORDJMP(T)]\n"
|
||||
dat += "<br>"
|
||||
|
||||
usr << browse(dat, "window=at_list")
|
||||
@@ -181,7 +181,7 @@ GLOBAL_LIST_INIT(admin_verbs_debug_mapping, list(
|
||||
count++
|
||||
to_chat(usr, "[count] AT markers placed.")
|
||||
|
||||
- feedback_add_details("admin_verb", "Show Roundstart Active Turf Markers")
|
||||
+ SSblackbox.add_details("admin_verb","Show Roundstart Active Turf Markers")
|
||||
|
||||
/client/proc/enable_debug_verbs()
|
||||
set category = "Debug"
|
||||
Reference in New Issue
Block a user