Fixed index out of bounds error when class limit is reached. Bumped class limit to 64 classes.

This commit is contained in:
Richard Helgeby 2011-07-10 13:37:00 +02:00
parent 8dccf920f4
commit ddf8be76f9
1 changed files with 3 additions and 4 deletions

View File

@ -42,10 +42,9 @@
*/ */
/** /**
* Total number of classes that can be stored in each cache. A total of 32 * Total number of classes that can be stored in each cache.
* classes should be enough. Too many classes will confuse players.
*/ */
#define ZR_CLASS_MAX 48 #define ZR_CLASS_MAX 64
/** /**
* @section Class cache types. Specifies what data array to use. * @section Class cache types. Specifies what data array to use.
@ -549,7 +548,7 @@ ClassLoad()
// Loop through all classes and store attributes in the ClassData array. // Loop through all classes and store attributes in the ClassData array.
do do
{ {
if (ClassCount > ZR_CLASS_MAX) if (ClassCount >= ZR_CLASS_MAX)
{ {
// Maximum classes reached. Write a warning and exit the loop. // Maximum classes reached. Write a warning and exit the loop.
LogEvent(false, LogType_Error, LOG_CORE_EVENTS, LogModule_Playerclasses, "Config Validation", "Warning: Maximum classes reached (%d). Skipping other classes.", ZR_CLASS_MAX + 1); LogEvent(false, LogType_Error, LOG_CORE_EVENTS, LogModule_Playerclasses, "Config Validation", "Warning: Maximum classes reached (%d). Skipping other classes.", ZR_CLASS_MAX + 1);