From 8f280b38c89c6245b4900f6bce868637967d8609 Mon Sep 17 00:00:00 2001 From: Fox-McCloud Date: Wed, 13 Jan 2016 19:49:48 -0500 Subject: [PATCH] Fixes Server Startup Times --- code/game/turfs/simulated/floor.dm | 5 ----- html/changelogs/startup-fix-mccloud.yml | 7 +++++++ 2 files changed, 7 insertions(+), 5 deletions(-) create mode 100644 html/changelogs/startup-fix-mccloud.yml diff --git a/code/game/turfs/simulated/floor.dm b/code/game/turfs/simulated/floor.dm index b28f2674c52..48298a98077 100644 --- a/code/game/turfs/simulated/floor.dm +++ b/code/game/turfs/simulated/floor.dm @@ -45,11 +45,6 @@ var/list/wood_icons = list("wood","wood-broken") if(floor_tile) builtin_tile = new floor_tile - spawn(5) - if(istype(src, /turf/simulated)) //you are probably looking at this and thinking "what the fuck", because that's the appropriate response - update_visuals() //however, shityond means that turfs can change src and spawned procs will try to run on it, and only sim turfs have update_visuals() - - /turf/simulated/floor/Destroy() if(builtin_tile) qdel(builtin_tile) diff --git a/html/changelogs/startup-fix-mccloud.yml b/html/changelogs/startup-fix-mccloud.yml new file mode 100644 index 00000000000..93e2ea217d1 --- /dev/null +++ b/html/changelogs/startup-fix-mccloud.yml @@ -0,0 +1,7 @@ + +author: Fox McCloud + +delete-after: True + +changes: + - bugfix: "fixes server loading taking an abnormally long time." \ No newline at end of file