summaryrefslogtreecommitdiffstats
path: root/pokemod/MapWildList.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'pokemod/MapWildList.cpp')
-rw-r--r--pokemod/MapWildList.cpp9
1 files changed, 3 insertions, 6 deletions
diff --git a/pokemod/MapWildList.cpp b/pokemod/MapWildList.cpp
index b9fec1f1..c5610252 100644
--- a/pokemod/MapWildList.cpp
+++ b/pokemod/MapWildList.cpp
@@ -148,15 +148,13 @@ bool MapWildList::time(const int time) const
const MapWildListEncounter* MapWildList::encounter(const int index) const
{
- if (encounterCount() <= index)
- return NULL;
+ Q_ASSERT(index < encounterCount());
return m_encounters.at(index);
}
MapWildListEncounter* MapWildList::encounter(const int index)
{
- if (encounterCount() <= index)
- return NULL;
+ Q_ASSERT(index < encounterCount());
return m_encounters[index];
}
@@ -208,8 +206,7 @@ MapWildListEncounter* MapWildList::newEncounter(MapWildListEncounter* encounter)
void MapWildList::deleteEncounter(const int index)
{
- if (encounterCount() <= index)
- return;
+ Q_ASSERT(index < encounterCount());
delete m_encounters[index];
m_encounters.removeAt(index);
}