diff --git a/code/__HELPERS/mobs.dm b/code/__HELPERS/mobs.dm index 4252e1558b..6e5ea6f9b5 100644 --- a/code/__HELPERS/mobs.dm +++ b/code/__HELPERS/mobs.dm @@ -408,8 +408,9 @@ GLOBAL_LIST_EMPTY(species_datums) override = TRUE if(HAS_TRAIT(M, TRAIT_SIXTHSENSE)) override = TRUE - if(SSticker.current_state == GAME_STATE_FINISHED) - override = TRUE + if(CONFIG_GET(flag/reveal_everything)) + if(SSticker.current_state == GAME_STATE_FINISHED) + override = TRUE if(isnewplayer(M) && !override) continue if(M.stat != DEAD && !override) diff --git a/code/__HELPERS/roundend.dm b/code/__HELPERS/roundend.dm index c63c1e1136..ba726f39c4 100644 --- a/code/__HELPERS/roundend.dm +++ b/code/__HELPERS/roundend.dm @@ -249,8 +249,7 @@ for(var/m in GLOB.player_list) var/mob/M = m H.add_hud_to(M) - - CHECK_TICK + CHECK_TICK //Set news report and mode result mode.set_round_result() @@ -274,8 +273,7 @@ // handle_hearts() if(CONFIG_GET(flag/reveal_everything)) set_observer_default_invisibility(0, "The round is over! You are now visible to the living.") - - CHECK_TICK + CHECK_TICK //These need update to actually reflect the real antagonists //Print a list of antagonists to the server log diff --git a/code/modules/admin/admin_verbs.dm b/code/modules/admin/admin_verbs.dm index 2d691149b6..9d92d08385 100644 --- a/code/modules/admin/admin_verbs.dm +++ b/code/modules/admin/admin_verbs.dm @@ -60,6 +60,7 @@ GLOBAL_PROTECT(admin_verbs_admin) /client/proc/jumptokey, /*allows us to jump to the location of a mob with a certain ckey*/ /client/proc/jumptomob, /*allows us to jump to a specific mob*/ /client/proc/jumptoturf, /*allows us to jump to a specific turf*/ + /client/proc/admin_end_shift, /*allows us to end the shift properly, also logs it*/ /client/proc/admin_call_shuttle, /*allows us to call the emergency shuttle*/ /client/proc/admin_cancel_shuttle, /*allows us to cancel the emergency shuttle, sending it back to centcom*/ // /client/proc/admin_disable_shuttle, /*allows us to disable the emergency shuttle admin-wise so that it cannot be called*/ @@ -232,6 +233,7 @@ GLOBAL_LIST_INIT(admin_verbs_hideable, list( /client/proc/cmd_admin_headset_message, /client/proc/cmd_admin_check_contents, /datum/admins/proc/access_news_network, + /client/proc/admin_end_shift, /client/proc/admin_call_shuttle, /client/proc/admin_cancel_shuttle, /client/proc/cmd_admin_direct_narrate, diff --git a/html/changelog.html b/html/changelog.html index b1254a6e60..8dcb0b3d2f 100644 --- a/html/changelog.html +++ b/html/changelog.html @@ -57,6 +57,11 @@

SandPoot updated: