From be7ea3adbbdb7aec239d6650f91c81386f972239 Mon Sep 17 00:00:00 2001 From: ESwordTheCat Date: Mon, 7 Apr 2014 23:10:46 +0800 Subject: [PATCH] HONK! --- code/__HELPERS/experimental.dm | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/code/__HELPERS/experimental.dm b/code/__HELPERS/experimental.dm index b2a2b7288f7..03e096537de 100644 --- a/code/__HELPERS/experimental.dm +++ b/code/__HELPERS/experimental.dm @@ -73,7 +73,8 @@ var/list/masterPool world << "DEBUG_OBJECT_POOL: initializing [A[i]]" #endif for (var/j = 1 to STARTING_OBJECT_POOL_COUNT) - Object = Object + new A[j]() + var/honk = A[j] + Object = Object + new honk() masterPool[A[i]] = Object @@ -99,7 +100,7 @@ var/list/masterPool . = Object #if DEBUG_OBJECT_POOL - world << "DEBUG_OBJECT_POOL: getFromPool([A.type]) [length(masterPool[A])]" + world << "DEBUG_OBJECT_POOL: getFromPool([A]) [length(masterPool[A])]" #endif if (0 == length(masterPool[A]))