summaryrefslogtreecommitdiff
path: root/src/map/map.c
diff options
context:
space:
mode:
authorLance <Lance@54d463be-8e91-2dee-dedb-b68131a5f0ec>2006-05-20 15:23:01 +0000
committerLance <Lance@54d463be-8e91-2dee-dedb-b68131a5f0ec>2006-05-20 15:23:01 +0000
commitcc8f41cb4f4af81d03bb48bc7878cee914337e0f (patch)
treea5603b1fb0eb6ca68c8d30f30f45f367e7c7ecb6 /src/map/map.c
parentaa5e2a517c8779db600a3015df5eea56d3a13c92 (diff)
downloadhercules-cc8f41cb4f4af81d03bb48bc7878cee914337e0f.tar.gz
hercules-cc8f41cb4f4af81d03bb48bc7878cee914337e0f.tar.bz2
hercules-cc8f41cb4f4af81d03bb48bc7878cee914337e0f.tar.xz
hercules-cc8f41cb4f4af81d03bb48bc7878cee914337e0f.zip
* Ammendment: battle_config.skill_sp_override_grffile
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@6668 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/map.c')
-rw-r--r--src/map/map.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/map/map.c b/src/map/map.c
index 350cba4a0..dad26f156 100644
--- a/src/map/map.c
+++ b/src/map/map.c
@@ -3659,7 +3659,8 @@ void do_final(void) {
// We probably don't need the grfio after server bootup 'yet' too. So this is closed near the end of do_init [Lance]
if((battle_config.cardillust_read_grffile || battle_config.item_equip_override_grffile ||
- battle_config.item_slots_override_grffile || battle_config.item_name_override_grffile))
+ battle_config.item_slots_override_grffile || battle_config.item_name_override_grffile ||
+ battle_config.skill_sp_override_grffile))
grfio_final();
for (i = 0; i < map_num; i++)
@@ -3953,7 +3954,8 @@ int do_init(int argc, char *argv[]) {
ShowNotice("Server is running on '"CL_WHITE"PK Mode"CL_RESET"'.\n");
if(!(battle_config.cardillust_read_grffile || battle_config.item_equip_override_grffile ||
- battle_config.item_slots_override_grffile || battle_config.item_name_override_grffile))
+ battle_config.item_slots_override_grffile || battle_config.item_name_override_grffile ||
+ battle_config.skill_sp_override_grffile))
grfio_final(); // Unused after reading all maps.
//However, some reload functions still use it,disable them.