Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Fix compilation issue
Follow up dae8122 (AEGIS class system) fix out of bound issue for array. (didn't check the x_ALL option system yet) Follow up 7a9aa7f Fix possible mapcrash due to offline player Follow up 12007fe Fix some invalide string check and remove the reverted sqlfiles
- Loading branch information
Showing
with
91 additions
and 134 deletions.
- +0 −50 sql-files/upgrades/upgrade_20131229.sql
- +3 −1 src/char/char.c
- +1 −1 src/map/atcommand.c
- +7 −11 src/map/battle.c
- +2 −1 src/map/battle.h
- +1 −1 src/map/chat.c
- +1 −1 src/map/chrif.c
- +1 −1 src/map/itemdb.c
- +1 −1 src/map/itemdb.h
- +1 −1 src/map/log.c
- +8 −6 src/map/map.h
- +1 −0 src/map/mob.h
- +23 −24 src/map/pc.c
- +30 −30 src/map/pc.h
- +2 −1 src/map/script.c
- +9 −4 src/map/skill.c
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @@ -1,50 +0,0 @@ | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @@ -68,6 +68,7 @@ enum size { | ||
| SZ_MEDIUM, | ||
| SZ_BIG, | ||
| SZ_ALL, | ||
| SZ_MAX | ||
| }; | ||
|
|
||
| struct mob_skill { | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.