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]"