mirror of
https://github.com/vgstation-coders/vgstation13.git
synced 2025-12-10 10:21:11 +00:00
13 lines
420 B
Plaintext
13 lines
420 B
Plaintext
/proc/return_revision()
|
|
return file2text(".git/refs/heads/Bleeding-Edge")
|
|
|
|
/client/verb/showrevinfo()
|
|
set category = "OOC"
|
|
set name = "Show Server Revision"
|
|
var/output = return_revision() || "Unable to load revision info from HEAD"
|
|
|
|
output += {"Current Infomational Settings: <br>
|
|
Protect Authority Roles From Tratior: [config.protect_roles_from_antagonist]<br>"}
|
|
usr << browse(output,"window=revdata");
|
|
return
|