summaryrefslogtreecommitdiff
path: root/src/map/status.h
diff options
context:
space:
mode:
authorepoque11 <epoque11@54d463be-8e91-2dee-dedb-b68131a5f0ec>2012-04-09 22:56:59 +0000
committerepoque11 <epoque11@54d463be-8e91-2dee-dedb-b68131a5f0ec>2012-04-09 22:56:59 +0000
commit059ae946435c89351b95d9a647e7cc37541ba5e2 (patch)
treee01aff2c310feccd086dc8c2c48e6bd42521cf41 /src/map/status.h
parent68c4c735455439e9c849b4c81d8a598e76d90c57 (diff)
downloadhercules-059ae946435c89351b95d9a647e7cc37541ba5e2.tar.gz
hercules-059ae946435c89351b95d9a647e7cc37541ba5e2.tar.bz2
hercules-059ae946435c89351b95d9a647e7cc37541ba5e2.tar.xz
hercules-059ae946435c89351b95d9a647e7cc37541ba5e2.zip
- Spring cleaning of various source files
- Removed unused src/map/config/Skills/Mage_Classes.h file git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@15837 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/status.h')
-rw-r--r--src/map/status.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/map/status.h b/src/map/status.h
index 61854ffb5..9b90c88b7 100644
--- a/src/map/status.h
+++ b/src/map/status.h
@@ -15,10 +15,10 @@ struct status_change;
* Max Refine available to your server
* Changing this limit requires edits to refine_db.txt
**/
-#if REMODE
-#define MAX_REFINE 20
+#ifdef RENEWAL
+# define MAX_REFINE 20
#else
-#define MAX_REFINE 10
+# define MAX_REFINE 10
#endif
enum refine_type {
@@ -1481,7 +1481,7 @@ struct status_data {
unsigned char
def_ele, ele_lv,
-#if REMODE
+#ifdef RENEWAL
/**
* in RE weapon level is used in several areas, keeping it here saves performance
**/
@@ -1554,7 +1554,7 @@ struct status_change {
/**
* The Storm Gust counter was dropped in renewal
**/
-#if isOFF(REMODE)
+#ifndef RENEWAL
unsigned char sg_counter; //Storm gust counter (previous hits from storm gust)
#endif
struct status_change_entry *data[SC_MAX];
@@ -1630,7 +1630,7 @@ unsigned char status_calc_attack_element(struct block_list *bl, struct status_ch
#define status_get_race(bl) status_get_status_data(bl)->race
#define status_get_size(bl) status_get_status_data(bl)->size
#define status_get_mode(bl) status_get_status_data(bl)->mode
-#if REMODE
+#ifdef RENEWAL
/**
* in RE weapon level is used in several areas, keeping it here saves performance
**/