World "?status" expansion, Topic() rework

* World "?status" expansion

* New helper procs for shuttles

* fix

* a fix
This commit is contained in:
Core0verload
2016-04-06 02:15:25 -06:00
committed by duncathan salt
parent 3b3bdcdb75
commit 04ce5e42cd
7 changed files with 86 additions and 69 deletions
+4 -1
View File
@@ -32,7 +32,8 @@
var/log_attack = 0 // log attack messages
var/log_adminchat = 0 // log admin chat messages
var/log_pda = 0 // log pda messages
var/log_hrefs = 0 // logs all links clicked in-game. Could be used for debugging and tracking down exploits
var/log_hrefs = 0 // log all links clicked in-game. Could be used for debugging and tracking down exploits
var/log_world_topic = 0 // log all world.Topic() calls
var/sql_enabled = 0 // for sql switching
var/allow_admin_ooccolor = 0 // Allows admins with relevant permissions to have their own ooc colour
var/allow_vote_restart = 0 // allow votes to restart
@@ -281,6 +282,8 @@
config.log_pda = 1
if("log_hrefs")
config.log_hrefs = 1
if("log_world_topic")
config.log_world_topic = 1
if("allow_admin_ooccolor")
config.allow_admin_ooccolor = 1
if("allow_vote_restart")