mirror of
https://github.com/mangosfour/server.git
synced 2025-12-24 10:37:02 +00:00
Over 100 camangos Cata commits applied (to c12950)
Over 100 camangos Cata commits applied. up to and inclusing c12950.
This commit is contained in:
parent
b4ec0440aa
commit
eef77eadb9
117 changed files with 4314 additions and 3547 deletions
|
|
@ -508,7 +508,7 @@ inline bool isBasicLatinString(const std::wstring &wstr, bool numericOrSpace)
|
|||
{
|
||||
for (size_t i = 0; i < wstr.size(); ++i)
|
||||
if (!isBasicLatinCharacter(wstr[i]) && (!numericOrSpace || !isNumericOrSpace(wstr[i])))
|
||||
{ return false; }
|
||||
return false;
|
||||
return true;
|
||||
}
|
||||
|
||||
|
|
@ -523,7 +523,7 @@ inline bool isExtendedLatinString(const std::wstring &wstr, bool numericOrSpace)
|
|||
{
|
||||
for (size_t i = 0; i < wstr.size(); ++i)
|
||||
if (!isExtendedLatinCharacter(wstr[i]) && (!numericOrSpace || !isNumericOrSpace(wstr[i])))
|
||||
{ return false; }
|
||||
return false;
|
||||
return true;
|
||||
}
|
||||
|
||||
|
|
@ -538,7 +538,7 @@ inline bool isCyrillicString(const std::wstring &wstr, bool numericOrSpace)
|
|||
{
|
||||
for (size_t i = 0; i < wstr.size(); ++i)
|
||||
if (!isCyrillicCharacter(wstr[i]) && (!numericOrSpace || !isNumericOrSpace(wstr[i])))
|
||||
{ return false; }
|
||||
return false;
|
||||
return true;
|
||||
}
|
||||
|
||||
|
|
@ -553,7 +553,7 @@ inline bool isEastAsianString(const std::wstring &wstr, bool numericOrSpace)
|
|||
{
|
||||
for (size_t i = 0; i < wstr.size(); ++i)
|
||||
if (!isEastAsianCharacter(wstr[i]) && (!numericOrSpace || !isNumericOrSpace(wstr[i])))
|
||||
{ return false; }
|
||||
return false;
|
||||
return true;
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -39,5 +39,5 @@
|
|||
#define WORLD_DB_VERSION_NR 21
|
||||
#define WORLD_DB_STRUCTURE_NR 2
|
||||
#define WORLD_DB_CONTENT_NR 1
|
||||
#define WORLD_DB_UPDATE_DESCRIPTION "revision_refactor"
|
||||
#define WORLD_DB_UPDATE_DESCRIPTION "script_binding populated"
|
||||
#endif // __REVISION_H__
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue