mirror of
https://github.com/mangosfour/server.git
synced 2025-12-14 16:37:01 +00:00
[9903] Fixed build problem at *nix.
Signed-off-by: VladimirMangos <vladimir@getmangos.com>
This commit is contained in:
parent
5b5552112d
commit
f492ee6794
3 changed files with 11 additions and 11 deletions
|
|
@ -1148,6 +1148,16 @@ enum SpellPreventionType
|
||||||
SPELL_PREVENTION_TYPE_PACIFY = 2
|
SPELL_PREVENTION_TYPE_PACIFY = 2
|
||||||
};
|
};
|
||||||
|
|
||||||
|
enum DamageEffectType
|
||||||
|
{
|
||||||
|
DIRECT_DAMAGE = 0, // used for normal weapon damage (not for class abilities or spells)
|
||||||
|
SPELL_DIRECT_DAMAGE = 1, // spell/class abilities damage
|
||||||
|
DOT = 2,
|
||||||
|
HEAL = 3,
|
||||||
|
NODAMAGE = 4, // used also in case when damage applied to health but not applied to spell channelInterruptFlags/etc
|
||||||
|
SELF_DAMAGE = 5
|
||||||
|
};
|
||||||
|
|
||||||
enum GameobjectTypes
|
enum GameobjectTypes
|
||||||
{
|
{
|
||||||
GAMEOBJECT_TYPE_DOOR = 0,
|
GAMEOBJECT_TYPE_DOOR = 0,
|
||||||
|
|
|
||||||
|
|
@ -510,16 +510,6 @@ enum CombatRating
|
||||||
|
|
||||||
#define MAX_COMBAT_RATING 25
|
#define MAX_COMBAT_RATING 25
|
||||||
|
|
||||||
enum DamageEffectType
|
|
||||||
{
|
|
||||||
DIRECT_DAMAGE = 0, // used for normal weapon damage (not for class abilities or spells)
|
|
||||||
SPELL_DIRECT_DAMAGE = 1, // spell/class abilities damage
|
|
||||||
DOT = 2,
|
|
||||||
HEAL = 3,
|
|
||||||
NODAMAGE = 4, // used also in case when damage applied to health but not applied to spell channelInterruptFlags/etc
|
|
||||||
SELF_DAMAGE = 5
|
|
||||||
};
|
|
||||||
|
|
||||||
/// internal used flags for marking special auras - for example some dummy-auras
|
/// internal used flags for marking special auras - for example some dummy-auras
|
||||||
enum UnitAuraFlags
|
enum UnitAuraFlags
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
#ifndef __REVISION_NR_H__
|
#ifndef __REVISION_NR_H__
|
||||||
#define __REVISION_NR_H__
|
#define __REVISION_NR_H__
|
||||||
#define REVISION_NR "9901"
|
#define REVISION_NR "9903"
|
||||||
#endif // __REVISION_NR_H__
|
#endif // __REVISION_NR_H__
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue