diff options
Diffstat (limited to '')
-rw-r--r-- | src/MobSpawner.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/MobSpawner.h b/src/MobSpawner.h index 941a04a17..2ccc28f0c 100644 --- a/src/MobSpawner.h +++ b/src/MobSpawner.h @@ -43,7 +43,7 @@ public : // return true if there is at least one allowed type bool CanSpawnAnything(void); - typedef const std::set<cMonster *> tSpawnedContainer; + typedef const std::set<std::unique_ptr<cMonster>> tSpawnedContainer; tSpawnedContainer & getSpawned(void); /** Returns true if specified type of mob can spawn on specified block */ @@ -61,7 +61,7 @@ protected : std::set<eMonsterType> m_AllowedTypes; bool m_NewPack; eMonsterType m_MobType; - std::set<cMonster *> m_Spawned; + std::set<std::unique_ptr<cMonster>> m_Spawned; } ; |