diff options
author | ultramage <ultramage@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2007-04-23 01:37:16 +0000 |
---|---|---|
committer | ultramage <ultramage@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2007-04-23 01:37:16 +0000 |
commit | ca9eab23b34f2fe839aea1ef90673e1d3f73c533 (patch) | |
tree | eea6eb4fe7fbabda1c9511941921eaef1d1a3755 /src/map | |
parent | d08465093859b1df55f66bcbd31e0c4d9e392132 (diff) | |
download | hercules-ca9eab23b34f2fe839aea1ef90673e1d3f73c533.tar.gz hercules-ca9eab23b34f2fe839aea1ef90673e1d3f73c533.tar.bz2 hercules-ca9eab23b34f2fe839aea1ef90673e1d3f73c533.tar.xz hercules-ca9eab23b34f2fe839aea1ef90673e1d3f73c533.zip |
- Fixed a compilation problem with the pid plugin
- Some minor cleanups
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@10322 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map')
-rw-r--r-- | src/map/atcommand.c | 2 | ||||
-rw-r--r-- | src/map/battle.c | 2 | ||||
-rw-r--r-- | src/map/map.h | 4 |
3 files changed, 4 insertions, 4 deletions
diff --git a/src/map/atcommand.c b/src/map/atcommand.c index a0827fcf6..f7a6813ae 100644 --- a/src/map/atcommand.c +++ b/src/map/atcommand.c @@ -5245,7 +5245,7 @@ int atcommand_reloadstatusdb(const int fd, struct map_session_data* sd, const ch return 0; } /*========================================== - * @reloadpcdb - reloads exp.txt skill_tree.txt attr_fix.txt + * @reloadpcdb - reloads exp.txt skill_tree.txt attr_fix.txt statpoint.txt *------------------------------------------ */ int atcommand_reloadpcdb(const int fd, struct map_session_data* sd, const char* command, const char* message) diff --git a/src/map/battle.c b/src/map/battle.c index 358eb5746..59969422f 100644 --- a/src/map/battle.c +++ b/src/map/battle.c @@ -4080,7 +4080,7 @@ void battle_set_defaults() { battle_config.pc_luk_sc_def = 300; battle_config.mob_luk_sc_def = 300; battle_config.pc_max_sc_def = 100; - battle_config.mob_max_sc_def = 50; + battle_config.mob_max_sc_def = 100; battle_config.sg_miracle_skill_ratio=1; battle_config.sg_angel_skill_ratio=1; battle_config.sg_miracle_skill_duration=3600000; diff --git a/src/map/map.h b/src/map/map.h index 7ce91c4c5..89393627a 100644 --- a/src/map/map.h +++ b/src/map/map.h @@ -229,12 +229,12 @@ enum { ELE_MAX }; -enum { +enum auto_trigger_flag { ATF_SELF=0x01, ATF_TARGET=0x02, ATF_SHORT=0x04, ATF_LONG=0x08 -} auto_trigger_flag; +}; struct block_list { struct block_list *next,*prev; |