setup_economy() was previously called twice, the removed call happened before character creation.
Moves the remaining line to ensure proper setup order.
This commit is contained in:
PsiOmega
2015-07-25 14:08:19 +02:00
parent d99e43c94c
commit 13ca02677c

View File

@@ -110,6 +110,7 @@ var/global/datum/controller/gameticker/ticker
else
src.mode.announce()
setup_economy()
current_state = GAME_STATE_PLAYING
create_characters() //Create player characters and transfer them
collect_minds()
@@ -118,9 +119,6 @@ var/global/datum/controller/gameticker/ticker
callHook("roundstart")
//here to initialize the random events nicely at round start
setup_economy()
shuttle_controller.setup_shuttle_docks()
spawn(0)//Forking here so we dont have to wait for this to finish