Skip to content

Commit

Permalink
whoopsies, fixes MOTD thing
Browse files Browse the repository at this point in the history
  • Loading branch information
GrrrKitten committed Jun 23, 2024
1 parent 3bc504e commit 3cbf838
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion code/game/world.dm
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,8 @@ GLOBAL_LIST_INIT(reboot_sfx, file2list("config/reboot_sfx.txt"))
load_admins()
jobban_loadbanfile()
LoadBans()
load_tm_message()
load_motd()
load_tm_message()
populate_gear_list()
initialize_global_regex()

Expand Down
4 changes: 2 additions & 2 deletions code/modules/mob/new_player/login.dm
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
var/author = lobby_authors[GLOB.displayed_lobby_art]
if(author != "Unknown")
to_chat(src, SPAN_ROUNDBODY("<hr>This round's lobby art is brought to you by [author]<hr>"))
if(GLOB.join_motd)
to_chat(src, "<div class=\"motd\">[GLOB.join_motd]</div>")
if(GLOB.current_tms)
to_chat(src, SPAN_BOLDANNOUNCE(GLOB.current_tms))
if(GLOB.join_motd)
to_chat(src, "<div class=\"motd\">[GLOB.join_motd]</div>")

0 comments on commit 3cbf838

Please sign in to comment.