Показать сообщение отдельно
Старый 09.03.2010, 11:27   #1
PSZ
Ученый
 
Регистрация: 07.03.2010
Сообщений: 138
Сказал(а) спасибо: 200
Поблагодарили 143 раз(а) в 49 сообщениях
PSZ Обладатель прекрасной аурыPSZ Обладатель прекрасной ауры
По умолчанию [patch] Blade of the Unyielding & Rod of the Unyielding

http://www.wowhead.com/?item=29108#comments
http://www.wowhead.com/?item=29109#comments
Итемы Blade of the Unyielding и Rod of the Unyielding должны вызывать рыцарей только при бое с Grillok "Darkeye".
Патч:
Код:
diff --git a/src/game/Unit.cpp b/src/game/Unit.cpp
index b6dce1e..9157006 100644
--- a/src/game/Unit.cpp
+++ b/src/game/Unit.cpp
@@ -7277,6 +7277,12 @@ bool Unit::HandleProcTriggerSpell(Unit *pVictim, uint32 damage, Aura* triggeredB
                     if (GetStat(STAT_AGILITY)  > stat) { trigger_spell_id = 67772;                               }
                     break;
                 }
+                case 38164:                                 // Blade of the Unyielding & Rod of the Unyielding
+                {
+                    // Must proc only when fighting with Grillok "Darkeye"
+                    if (pVictim->GetEntry() != 19457)
+                        return false;
+                }
             }
             break;
         case SPELLFAMILY_MAGE:
PSZ вне форума   Ответить с цитированием
4 пользователя(ей) сказали cпасибо:
Den (06.01.2011), tempura (28.05.2010)