(svn r25299) -Feature: Allow more concurrent goals in a game

This commit is contained in:
zuu
2013-05-27 21:59:11 +00:00
parent c045fd6f96
commit ee09686df1
2 changed files with 2 additions and 1 deletions

View File

@@ -16,7 +16,7 @@
#include "goal_type.h"
#include "core/pool_type.hpp"
typedef Pool<Goal, GoalID, 1, 256> GoalPool;
typedef Pool<Goal, GoalID, 64, 64000> GoalPool;
extern GoalPool _goal_pool;
/** Struct about goals, current and completed */