Commit 5d337656 authored by DailyShana's avatar DailyShana

update

parent 3c1db2fc
...@@ -2185,8 +2185,8 @@ effect* card::is_affected_by_effect(int32 code) { ...@@ -2185,8 +2185,8 @@ effect* card::is_affected_by_effect(int32 code) {
rg = pduel->game_field->effects.aura_effect.equal_range(code); rg = pduel->game_field->effects.aura_effect.equal_range(code);
for (; rg.first != rg.second; ++rg.first) { for (; rg.first != rg.second; ++rg.first) {
peffect = rg.first->second; peffect = rg.first->second;
if (!peffect->is_flag(EFFECT_FLAG_PLAYER_TARGET) && peffect->is_available() if (!peffect->is_flag(EFFECT_FLAG_PLAYER_TARGET) && peffect->is_target(this)
&& peffect->is_target(this) && is_affect_by_effect(peffect)) && peffect->is_available() && is_affect_by_effect(peffect))
return peffect; return peffect;
} }
return 0; return 0;
......
...@@ -376,8 +376,8 @@ public: ...@@ -376,8 +376,8 @@ public:
#define RACE_PSYCHO 0x100000 // #define RACE_PSYCHO 0x100000 //
#define RACE_DEVINE 0x200000 // #define RACE_DEVINE 0x200000 //
#define RACE_CREATORGOD 0x400000 // #define RACE_CREATORGOD 0x400000 //
#define RACE_WYRM 0x800000 // #define RACE_WYRM 0x800000 //
#define RACE_CYBERS 0x1000000 // #define RACE_CYBERS 0x1000000 //
//Reason //Reason
#define REASON_DESTROY 0x1 // #define REASON_DESTROY 0x1 //
#define REASON_RELEASE 0x2 // #define REASON_RELEASE 0x2 //
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment