diff options
author | shennetsind <shennetsind@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2011-12-29 23:18:40 +0000 |
---|---|---|
committer | shennetsind <shennetsind@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2011-12-29 23:18:40 +0000 |
commit | 4b2e025ed2bfd1d23dba095e828da403cf82663f (patch) | |
tree | 3857b70a8379055a90909071d3a53076389b2555 /src/map/config | |
parent | a75f13f9a36ad91cf2fd07257beccbf5bd189c75 (diff) | |
download | hercules-4b2e025ed2bfd1d23dba095e828da403cf82663f.tar.gz hercules-4b2e025ed2bfd1d23dba095e828da403cf82663f.tar.bz2 hercules-4b2e025ed2bfd1d23dba095e828da403cf82663f.tar.xz hercules-4b2e025ed2bfd1d23dba095e828da403cf82663f.zip |
minor code improvement, moved some "hidden" configs to config/Core.h
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@15329 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/config')
-rw-r--r-- | src/map/config/Core.h | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/src/map/config/Core.h b/src/map/config/Core.h index 0ccfdbf93..d8d651903 100644 --- a/src/map/config/Core.h +++ b/src/map/config/Core.h @@ -6,6 +6,24 @@ **/ /** + * Max Refine available to your server + * Raising this limit requires edits to /db/refine_db.txt + **/ +#define MAX_REFINE 20 + +//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" |