fix foundry collection zone

shapetextures
Maikel de Vries 2015-09-12 22:35:33 +02:00
parent e64534b201
commit 329eaac691
1 changed files with 2 additions and 2 deletions

View File

@ -57,8 +57,8 @@ func CollectionZone()
{
if (GetCon() < 100) return;
for (var object in FindObjects(Find_InRect(16 - 45 * GetDir(),3,13,13), Find_OCF(OCF_Collectible), Find_NoContainer(), Find_Layer(GetObjectLayer())))
Collect(object);
for (var obj in FindObjects(Find_InRect(16 - 45 * GetDir(),3,13,13), Find_OCF(OCF_Collectible), Find_NoContainer(), Find_Layer(GetObjectLayer())))
Collect(obj, true);
}
func Collection()