summaryrefslogtreecommitdiff
path: root/src/staticobject.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/staticobject.h')
-rw-r--r--src/staticobject.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/staticobject.h b/src/staticobject.h
index 4918a1466..95a1b945e 100644
--- a/src/staticobject.h
+++ b/src/staticobject.h
@@ -68,8 +68,7 @@ public:
{
dstream<<"ERROR: StaticObjectList::insert(): "
<<"id already exists"<<std::endl;
- assert(0);
- return;
+ FATAL_ERROR("StaticObjectList::insert()");
}
m_active[id] = obj;
}
@@ -77,7 +76,7 @@ public:
void remove(u16 id)
{
- assert(id != 0);
+ assert(id != 0); // Pre-condition
if(m_active.find(id) == m_active.end())
{
dstream<<"WARNING: StaticObjectList::remove(): id="<<id