Reserve PascalCase inits

This commit is contained in:
Wild Bill
2014-12-16 16:20:50 +02:00
parent 3c5b4eafbf
commit 5bae906c47
4 changed files with 7 additions and 7 deletions

View File

@@ -65,7 +65,7 @@ datum/controller/lighting/proc/process()
//Does not loop. Should be run prior to process() being called for the first time.
//Note: if we get additional z-levels at runtime (e.g. if the gateway thin ever gets finished) we can initialize specific
//z-levels with the z_level argument
datum/controller/lighting/proc/Initialize(var/z_level)
datum/controller/lighting/proc/initializeLighting(var/z_level)
processing = 0
spawn(-1)
set background = 1

View File

@@ -84,7 +84,7 @@ datum/controller/game_controller/proc/setup()
if(ticker)
ticker.pregame()
lighting_controller.Initialize()
lighting_controller.initializeLighting()
datum/controller/game_controller/proc/setup_objects()