From a12f98e52dca737f151231c1691d0698fe321eaa Mon Sep 17 00:00:00 2001 From: Poojawa Date: Sat, 22 Sep 2018 04:07:26 -0500 Subject: [PATCH] HELP ENGINEER TRAPPED ME IN MAINTENENCE *FWEEEEEeeeee FOR THE BYOND VERSION --- code/datums/helper_datums/getrev.dm | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/code/datums/helper_datums/getrev.dm b/code/datums/helper_datums/getrev.dm index a719223ea7..c73d359bf1 100644 --- a/code/datums/helper_datums/getrev.dm +++ b/code/datums/helper_datums/getrev.dm @@ -57,7 +57,11 @@ // Round ID if(GLOB.round_id) msg += "Round ID: [GLOB.round_id]" - + + msg += "BYOND Version: [world.byond_version].[world.byond_build]" + if(DM_VERSION != world.byond_version || DM_BUILD != world.byond_build) + msg += "Compiled with BYOND Version: [DM_VERSION].[DM_BUILD]" + // Revision information var/datum/getrev/revdata = GLOB.revdata msg += "Server revision compiled on: [revdata.date]"