From c6a0982efc9363c39041730943387bc6b433b8e9 Mon Sep 17 00:00:00 2001 From: DragonTrance Date: Mon, 6 Jun 2022 13:42:06 -0400 Subject: [PATCH] change verbage of savefile versions and how it notifies --- code/modules/mob/dead/new_player/login.dm | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/code/modules/mob/dead/new_player/login.dm b/code/modules/mob/dead/new_player/login.dm index acd966416..393dfefc9 100644 --- a/code/modules/mob/dead/new_player/login.dm +++ b/code/modules/mob/dead/new_player/login.dm @@ -43,7 +43,13 @@ S.cd = "/" var/slot S["default_slot"] >> slot + var/differing_version_notification = 0 if(slot) S.cd = "/character[slot]" - if(S["version"] < SAVEFILE_VERSION_MAX) - to_chat(src, "Your characters are outdated from recent updates. Please make sure if everything is within reasonable levels.") + var/slot_version = S["version"] + if(slot_version < SAVEFILE_VERSION_MAX) + S.cd = "/" + S["new_differences_notification"] >> differing_version_notification + if(!differing_version_notification || differing_version_notification <= slot_version) + S["new_differences_notification"] << slot_version + to_chat(src, "There were recent changes with characters, and your savefiles are outdated.")