
Pages:<< prev 1 next >>

Off the Edge of the Map

GroupAdministrators
Posts1,199
JoinedMar 21, 2006
Bug: Numattacks aren't initialized properly when making mobiles.
Danger: Low, numattacks aren't initialized properly when mobs are first created.
Found by: Kayle/Samsa
Fixed by: Several
---
db.c
MOB_INDEX_DATA *make_mobile( int vnum, int cvnum, const char *name )
Find:
Change to:
Danger: Low, numattacks aren't initialized properly when mobs are first created.
Found by: Kayle/Samsa
Fixed by: Several
---
db.c
MOB_INDEX_DATA *make_mobile( int vnum, int cvnum, const char *name )
Find:
pMobIndex->numattacks = 0;
Change to:
pMobIndex->numattacks = 1;
Pages:<< prev 1 next >>