diff options
author | epoque11 <epoque11@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2012-04-09 23:21:18 +0000 |
---|---|---|
committer | epoque11 <epoque11@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2012-04-09 23:21:18 +0000 |
commit | 7d50f79a9c5c5de524b4e532d3ce1b2fd0745857 (patch) | |
tree | b7eb5c8d352702638cd7820cde8ee5d508bc4096 /src/map/config/core.h | |
parent | 059ae946435c89351b95d9a647e7cc37541ba5e2 (diff) | |
download | hercules-7d50f79a9c5c5de524b4e532d3ce1b2fd0745857.tar.gz hercules-7d50f79a9c5c5de524b4e532d3ce1b2fd0745857.tar.bz2 hercules-7d50f79a9c5c5de524b4e532d3ce1b2fd0745857.tar.xz hercules-7d50f79a9c5c5de524b4e532d3ce1b2fd0745857.zip |
- Follow-up to r15837, fixed compiler error due to missing header file
- Cleaned upper-case file naming which goes against coding standards
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@15838 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/config/core.h')
-rw-r--r-- | src/map/config/core.h | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/src/map/config/core.h b/src/map/config/core.h new file mode 100644 index 000000000..4d8e38f95 --- /dev/null +++ b/src/map/config/core.h @@ -0,0 +1,40 @@ +// Copyright (c) rAthena Dev Teams - Licensed under GNU GPL +// For more information, see LICENCE in the main folder +#ifndef _CONFIG_CORE_H_ +#define _CONFIG_CORE_H_ + +/** + * rAthena configuration file (http://rathena.org) + * For detailed guidance on these check http://rathena.org/wiki/SRC/map/config/ + **/ + +/** + * Max number of items on @autolootid list + **/ +#define AUTOLOOTITEM_SIZE 10 + +//Uncomment to enable the Cell Stack Limit mod. +//It's only config is the battle_config cell_stack_limit. +//Only chars affected are those defined in BL_CHAR (mobs and players currently) +//#define CELL_NOSTACK + +//Uncomment to enable circular area checks. +//By default, all range checks in Aegis are of Square shapes, so a weapon range +// of 10 allows you to attack from anywhere within a 21x21 area. +//Enabling this changes such checks to circular checks, which is more realistic, +// but is not the official behaviour. +//#define CIRCULAR_AREA + +/** + * No settings past this point + **/ +#include "./renewal.h" +#include "./secure.h" +#include "./classes/general.h" + +/** + * Constants come last; so they process anything that could've been modified in early includes + **/ +#include "./const.h" + +#endif // _CONFIG_CORE_H_ |