blob: cab0180d7cd74b19fc916171484e3b48671b2c13 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
// 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_
/**
* Hercules configuration file (http://hercules.ws)
**/
/**
* Default Magical Reflection Behavior
* - When reflecting, reflected damage depends on gears caster is wearing, not target
* - When disabled damage depends on gears target is wearing, not caster.
* @values 1 (enabled) or 0 (disabled)
**/
#define MAGIC_REFLECTION_TYPE 1
/**
* No settings past this point
**/
#endif // _CONFIG_GENERAL_H_
|