diff options
author | Matheus Macabu <mkbu95@gmail.com> | 2013-04-22 22:15:23 -0300 |
---|---|---|
committer | Matheus Macabu <mkbu95@gmail.com> | 2013-04-22 22:15:23 -0300 |
commit | 60cfb9545fbfa1301d147ba242a8048a0fbde758 (patch) | |
tree | 64cd1dc672bd786b23a06bed6725a3f42304bfcf /src/char/char.c | |
parent | ae8b835bae40e0d6908bae42c963d536534d3e93 (diff) | |
download | hercules-60cfb9545fbfa1301d147ba242a8048a0fbde758.tar.gz hercules-60cfb9545fbfa1301d147ba242a8048a0fbde758.tar.bz2 hercules-60cfb9545fbfa1301d147ba242a8048a0fbde758.tar.xz hercules-60cfb9545fbfa1301d147ba242a8048a0fbde758.zip |
Little fix to start_items. Thanks to lighta!
Signed-off-by: Matheus Macabu <mkbu95@gmail.com>
Diffstat (limited to 'src/char/char.c')
-rw-r--r-- | src/char/char.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/char/char.c b/src/char/char.c index ae65caa56..204397dd3 100644 --- a/src/char/char.c +++ b/src/char/char.c @@ -125,7 +125,7 @@ int max_connect_user = -1; int gm_allow_group = -1; int autosave_interval = DEFAULT_AUTOSAVE_INTERVAL; int start_zeny = 0; -int start_items[64]; //32 starting items allowed [mkbu95] +int start_items[MAX_START_ITEMS*2]; int guild_exp_rate = 100; //Custom limits for the fame lists. [Skotlex] @@ -4790,7 +4790,7 @@ int char_config_read(const char* cfgName) i = 0; split = strtok(w2, ","); - while (split != NULL) { + while (split != NULL && i < MAX_START_ITEMS) { split2 = split; split = strtok(NULL, ","); start_items[i] = atoi(split2); |