Removed an incorrect range check and fixed a copypaste typo which caused script engine errors / crashes (see r11984)

git-svn-id: https://svn.code.sf.net/p/rathena/svn/trunk@11987 54d463be-8e91-2dee-dedb-b68131a5f0ec
This commit is contained in:
ultramage 2007-12-27 18:45:33 +00:00
parent f16dcdf4d5
commit d75169014a
2 changed files with 3 additions and 6 deletions

View File

@ -4,6 +4,8 @@ AS OF SVN REV. 5091, WE ARE NOW USING TRUNK. ALL UNTESTED BUGFIXES/FEATURES GO
IF YOU HAVE A WORKING AND TESTED BUGFIX PUT IT INTO STABLE AS WELL AS TRUNK. IF YOU HAVE A WORKING AND TESTED BUGFIX PUT IT INTO STABLE AS WELL AS TRUNK.
2007/12/27 2007/12/27
* Removed an incorrect range check and fixed a copypaste typo which
caused script engine errors / crashes (see r11984)
* Re-added a missing mob last_thinktime timer initialization when a mob * Re-added a missing mob last_thinktime timer initialization when a mob
spawns, causing mob AI to freeze (mistake in r11964) [ultramage] spawns, causing mob AI to freeze (mistake in r11964) [ultramage]
* Changed the configure script: * Changed the configure script:

View File

@ -5904,7 +5904,7 @@ int pc_setreg(struct map_session_data* sd, int reg, int val)
} }
ARR_FIND( 0, sd->reg_num, i, sd->reg[i].data == 0 ); ARR_FIND( 0, sd->reg_num, i, sd->reg[i].data == 0 );
if( i == sd->regstr_num ) if( i == sd->reg_num )
{// nothing free, increase size {// nothing free, increase size
sd->reg_num++; sd->reg_num++;
RECREATE(sd->reg, struct script_reg, sd->reg_num); RECREATE(sd->reg, struct script_reg, sd->reg_num);
@ -5936,11 +5936,6 @@ int pc_setregstr(struct map_session_data* sd, int reg, char* str)
nullpo_retr(0, sd); nullpo_retr(0, sd);
if(str && strlen(str)+1 >= sizeof(sd->regstr[0].data)){
ShowWarning("pc_setregstr: string too long !\n");
return 0;
}
ARR_FIND( 0, sd->regstr_num, i, sd->regstr[i].index == reg ); ARR_FIND( 0, sd->regstr_num, i, sd->regstr[i].index == reg );
if( i < sd->regstr_num ) if( i < sd->regstr_num )
{// found entry, update {// found entry, update