diff options
author | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2007-03-08 16:27:06 +0000 |
---|---|---|
committer | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2007-03-08 16:27:06 +0000 |
commit | 47b0d1c5c22714622a528d1de0d7ab8bcc5dfec7 (patch) | |
tree | e463a431c75658b40c6a0c518b10028526e23ce6 /src/map/script.c | |
parent | dff76e1a9840fe00a6c738d89de5d1074eae858a (diff) | |
download | hercules-47b0d1c5c22714622a528d1de0d7ab8bcc5dfec7.tar.gz hercules-47b0d1c5c22714622a528d1de0d7ab8bcc5dfec7.tar.bz2 hercules-47b0d1c5c22714622a528d1de0d7ab8bcc5dfec7.tar.xz hercules-47b0d1c5c22714622a528d1de0d7ab8bcc5dfec7.zip |
- Normalized the mapname in guild get/set castle data, should fix guild flags.
- Added log options 0x800/0x1000 to log storage moves ('R') and guild storage moves ('G')
- Added upgrade_svn9976.sql to include 'R'/'G' on the picklog type column set.
- Updated the logs_athena description to include the letter of each type (512 - M, 32 - N, etc)
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@9976 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/script.c')
-rw-r--r-- | src/map/script.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/map/script.c b/src/map/script.c index 259ab7073..55771c6e3 100644 --- a/src/map/script.c +++ b/src/map/script.c @@ -9147,6 +9147,8 @@ BUILDIN_FUNC(getcastledata) struct guild_castle *gc; int i,j; + map_normalize_name(mapname); + if( st->end>st->start+4 && index==0){ for(i=0,j=-1;i<MAX_GUILDCASTLE;i++) if( (gc=guild_castle_search(i)) != NULL && @@ -9210,6 +9212,8 @@ BUILDIN_FUNC(setcastledata) struct guild_castle *gc; int i; + map_normalize_name(mapname); + for(i=0;i<MAX_GUILDCASTLE;i++){ if( (gc=guild_castle_search(i)) != NULL ){ if(strcmp(mapname,gc->map_name)==0){ |