From d728e440d68b48d2d6b23fdec2fe6724e18db5ed Mon Sep 17 00:00:00 2001 From: VastKilleroOm <74047915+VastKilleroOm@users.noreply.github.com> Date: Fri, 3 Feb 2023 12:47:27 +0300 Subject: [PATCH] Fix: Ru characters mentor logs, server logs, AI laws fixes (#67) Ru characters mentor logs, server logs, AI laws fixes @russnake1231 --------- Co-authored-by: Bizzonium Co-authored-by: BeebBeebBoob <32985153+BeebBeebBoob@users.noreply.github.com> Co-authored-by: Vallat Co-authored-by: Magic101lvl <90201598+Magic101lvl@users.noreply.github.com> Co-authored-by: Krashly <104254674+Krashly@users.noreply.github.com> Co-authored-by: Holoo <38228316+Holoo-1@users.noreply.github.com> Co-authored-by: RuByxarik <120047236+RuByxarik@users.noreply.github.com> Co-authored-by: kawaiinick <104280915+kawaiinick@users.noreply.github.com> Co-authored-by: Russnake1231 <105020573+russnake1231@users.noreply.github.com> --- code/modules/admin/verbs/getlogs.dm | 2 +- code/modules/mentor/mentor.dm | 2 +- code/modules/mob/living/silicon/silicon.dm | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/code/modules/admin/verbs/getlogs.dm b/code/modules/admin/verbs/getlogs.dm index 77b43f9b49f48..2324cbe9b2a17 100644 --- a/code/modules/admin/verbs/getlogs.dm +++ b/code/modules/admin/verbs/getlogs.dm @@ -24,7 +24,7 @@ message_admins("[key_name_admin(src)] accessed file: [path]") switch(tgui_alert(usr,"View (in game), Open (in your system's text editor), or Download?", path, list("View", "Open", "Download"))) if ("View") - src << browse("
[html_encode(file2text(file(path)))]
", list2params(list("window" = "viewfile.[path]"))) + src << browse("
   [html_encode(file2text(file(path)))]
", list2params(list("window" = "viewfile.[path]"))) if ("Open") src << run(file(path)) if ("Download") diff --git a/code/modules/mentor/mentor.dm b/code/modules/mentor/mentor.dm index 09c5b248236b3..6dd5071ed375e 100644 --- a/code/modules/mentor/mentor.dm +++ b/code/modules/mentor/mentor.dm @@ -98,7 +98,7 @@ GLOBAL_PROTECT(mentor_href_token) set category = "Admin" set name = "Mentor Logs" set desc = "Check what mentors have done for this round." - var/dat = "Mentor Log
" + var/dat = " Mentor Log
" for(var/l in GLOB.mentorlog) dat += "
  • [l]
  • " diff --git a/code/modules/mob/living/silicon/silicon.dm b/code/modules/mob/living/silicon/silicon.dm index 4b28a783db7d3..45a3704cb165b 100644 --- a/code/modules/mob/living/silicon/silicon.dm +++ b/code/modules/mob/living/silicon/silicon.dm @@ -293,7 +293,7 @@ ///Gives you a link-driven interface for deciding what laws the statelaws() proc will share with the crew. /mob/living/silicon/proc/checklaws() laws_sanity_check() - var/list = "Which laws do you want to include when stating them for the crew?

    " + var/list = " Which laws do you want to include when stating them for the crew?

    " var/law_display = "Yes" if (laws.zeroth)