diff options
Diffstat (limited to 'src/map/config/Skills')
-rw-r--r-- | src/map/config/Skills/General.h | 10 | ||||
-rw-r--r-- | src/map/config/Skills/Mage_Classes.h | 11 | ||||
-rw-r--r-- | src/map/config/Skills/Swordsman_Classes.h | 19 |
3 files changed, 16 insertions, 24 deletions
diff --git a/src/map/config/Skills/General.h b/src/map/config/Skills/General.h index d06b7842d..746630845 100644 --- a/src/map/config/Skills/General.h +++ b/src/map/config/Skills/General.h @@ -1,5 +1,8 @@ -#ifndef _RRCONFIGS_SKILLS_GENERAL_ -#define _RRCONFIGS_SKILLS_GENERAL_ +// Copyright (c) rAthena Dev Teams - Licensed under GNU GPL +// For more information, see LICENCE in the main folder +#ifndef _CONFIG_GENERAL_H_ +#define _CONFIG_GENERAL_H_ + /** * rAthena configuration file (http://rathena.org) * For detailed guidance on these check http://rathena.org/wiki/SRC/map/config/ @@ -18,4 +21,5 @@ **/ #include "Mage_Classes.h" #include "Swordsman_Classes.h" -#endif + +#endif // _CONFIG_GENERAL_H_ diff --git a/src/map/config/Skills/Mage_Classes.h b/src/map/config/Skills/Mage_Classes.h deleted file mode 100644 index 65d7f88e8..000000000 --- a/src/map/config/Skills/Mage_Classes.h +++ /dev/null @@ -1,11 +0,0 @@ -#ifndef _RRCONFIGS_SKILLS_MAGE_ -#define _RRCONFIGS_SKILLS_MAGE_ -/** - * rAthena configuration file (http://rathena.org) - * For detailed guidance on these check http://rathena.org/wiki/SRC/map/config/ - **/ - -/** - * No settings past this point - **/ -#endif diff --git a/src/map/config/Skills/Swordsman_Classes.h b/src/map/config/Skills/Swordsman_Classes.h index 91edb7167..44ae922d5 100644 --- a/src/map/config/Skills/Swordsman_Classes.h +++ b/src/map/config/Skills/Swordsman_Classes.h @@ -1,17 +1,16 @@ -#ifndef _RRCONFIGS_SKILLS_SWORDS_ -#define _RRCONFIGS_SKILLS_SWORDS_ +// Copyright (c) rAthena Dev Teams - Licensed under GNU GPL +// For more information, see LICENCE in the main folder +#ifndef _CONFIG_SKILLS_SWORDS_H_ +#define _CONFIG_SKILLS_SWORDS_H_ /** * rAthena configuration file (http://rathena.org) * For detailed guidance on these check http://rathena.org/wiki/SRC/map/config/ **/ -/** - * (Rune Knight) the maximum rune items a character may have of the same type - * Default: 20 - **/ +/// rune knight +/// +/// maximum number of runes that a rune knight character can carry at any given time +/// default: 20 #define MAX_RUNE 20 -/** - * No settings past this point - **/ -#endif +#endif // _CONFIG_SKILLS_SWORDS_H_ |