From bbaa60c8ce10c96f97796a29b40d83c666662102 Mon Sep 17 00:00:00 2001 From: Markolie Date: Wed, 23 Sep 2015 06:22:00 +0200 Subject: [PATCH] Fixes --- code/game/gamemodes/gameticker.dm | 8 ++++---- code/modules/admin/admin_verbs.dm | 4 ++-- code/modules/library/lib_machines.dm | 2 +- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/code/game/gamemodes/gameticker.dm b/code/game/gamemodes/gameticker.dm index 3a45f364a94..e6a56890c63 100644 --- a/code/game/gamemodes/gameticker.dm +++ b/code/game/gamemodes/gameticker.dm @@ -214,10 +214,6 @@ var/global/datum/controller/gameticker/ticker if(admins_number == 0) send2adminirc("Round has started with no admins online.") auto_toggle_ooc(0) // Turn it off - - if(config.sql_enabled) - spawn(3000) - statistic_cycle() // Polls population totals regularly and stores them in an SQL DB /* DONE THROUGH PROCESS SCHEDULER supply_controller.process() //Start the supply shuttle regenerating points -- TLE @@ -226,6 +222,10 @@ var/global/datum/controller/gameticker/ticker */ processScheduler.start() + + if(config.sql_enabled) + spawn(3000) + statistic_cycle() // Polls population totals regularly and stores them in an SQL DB votetimer() diff --git a/code/modules/admin/admin_verbs.dm b/code/modules/admin/admin_verbs.dm index 15db708048a..ff0122a0bac 100644 --- a/code/modules/admin/admin_verbs.dm +++ b/code/modules/admin/admin_verbs.dm @@ -802,11 +802,11 @@ var/list/admin_verbs_mentor = list( if (!jobs.len) usr << "There are no fully staffed jobs." return - var/job = input("Please select job slot to free", "Free job slot") as null|anything in jobs + var/job = input("Please select job slot to free", "Free Job Slot") as null|anything in jobs if (job) job_master.FreeRole(job) log_admin("[key_name(usr)] has freed a job slot for [job].") - message_admins("[key_name_admin(usr) has freed a job slot for [job].") + message_admins("[key_name_admin(usr)] has freed a job slot for [job].") /client/proc/toggleattacklogs() set name = "Toggle Attack Log Messages" diff --git a/code/modules/library/lib_machines.dm b/code/modules/library/lib_machines.dm index f64b4b5ecf4..befef4ed4d6 100644 --- a/code/modules/library/lib_machines.dm +++ b/code/modules/library/lib_machines.dm @@ -493,4 +493,4 @@ datum/borrowbook // Datum used to keep track of who has borrowed what when and f return log_admin("[key_name(usr)] has deleted the book [isbn].") - message_admins("[key_name_admin(usr) has deleted the book [isbn].") + message_admins("[key_name_admin(usr)] has deleted the book [isbn].")