diff --git a/code/datums/helper_datums/getrev.dm b/code/datums/helper_datums/getrev.dm
index e9c1bd70d0a..d9ccc2e5b7e 100644
--- a/code/datums/helper_datums/getrev.dm
+++ b/code/datums/helper_datums/getrev.dm
@@ -4,7 +4,7 @@
*
*/
-var/global/datum/getrev/revdata = new("config/svndir.txt")
+var/global/datum/getrev/revdata // = new("config/svndir.txt") //commented out until the git revcount stuff is ready
//Oh yeah, I'm an OOP fag, lalala
/datum/getrev
@@ -90,11 +90,11 @@ var/global/datum/getrev/revdata = new("config/svndir.txt")
client/verb/showrevinfo()
set category = "OOC"
set name = "Show Server Revision"
- var/output = "Sorry, the revision info is unavailable."
+ var/output = "Sorry, the revision info is unavailable.
"
if(revdata)
output = revdata.showInfo()
- output += "Current Infomational Settings:
"
- output += "Protect Authority Roles From Tratior: [config.protect_roles_from_antagonist]
"
+ output += "Current Infomational Settings:
"
+ output += "Protect Authority Roles From Tratior: [config.protect_roles_from_antagonist]
"
usr << browse(output,"window=revdata");
return