aboutsummaryrefslogtreecommitdiff
path: root/src/shared/Database/DBCStore.h
diff options
context:
space:
mode:
authorQAston <none@none>2009-08-18 18:47:20 +0200
committerQAston <none@none>2009-08-18 18:47:20 +0200
commitea986991874369f4b244676001f39767efdf4f32 (patch)
tree0aa455d75c6fca9f9d1305cbe2e07f5b82fcdd9e /src/shared/Database/DBCStore.h
parent84bb5022f5bec20c34940a09ba25054625130afb (diff)
*Fix a typo in xp bonus auras.
--HG-- branch : trunk
Diffstat (limited to 'src/shared/Database/DBCStore.h')
-rw-r--r--src/shared/Database/DBCStore.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/shared/Database/DBCStore.h b/src/shared/Database/DBCStore.h
index 523d5c5a0b3..2906a93edbc 100644
--- a/src/shared/Database/DBCStore.h
+++ b/src/shared/Database/DBCStore.h
@@ -34,11 +34,11 @@ class DBCStorage
char const* GetFormat() const { return fmt; }
uint32 GetFieldCount() const { return fieldCount; }
- bool Load(char const* fn)
+ bool Load(char const* fn, uint32 customEntriesCount = 0)
{
DBCFileLoader dbc;
// Check if load was sucessful, only then continue
- if(!dbc.Load(fn, fmt))
+ if(!dbc.Load(fn, fmt, customEntriesCount))
return false;
fieldCount = dbc.GetCols();