Converts our own uses of PoolOrNew to use just new()

This commit is contained in:
Leshana
2017-05-16 00:26:56 -04:00
parent 5ae26332fa
commit a8dbd7627d
3 changed files with 5 additions and 5 deletions
+1 -1
View File
@@ -73,7 +73,7 @@
var/turf/simulated/open/OS = GetAbove(src)
while(OS && istype(OS))
if(!M.shadow)
M.shadow = PoolOrNew(/mob/zshadow, M)
M.shadow = new /mob/zshadow(M)
M.shadow.forceMove(OS)
M = M.shadow
OS = GetAbove(M)