Core/Misc: Extended racemasks in db to uint64

This commit is contained in:
Shauren
2018-09-26 21:34:56 +02:00
parent a6fb448b44
commit dd356ea04c
17 changed files with 54 additions and 34 deletions

View File

@@ -135,7 +135,12 @@ bool ConfigMgr::GetBoolDefault(std::string const& name, bool def) const
return StringToBool(val);
}
int ConfigMgr::GetIntDefault(std::string const& name, int def) const
int32 ConfigMgr::GetIntDefault(std::string const& name, int32 def) const
{
return GetValueDefault(name, def);
}
int64 ConfigMgr::GetInt64Default(std::string const& name, int64 def) const
{
return GetValueDefault(name, def);
}