Skip to content

Commit 34fb1d6

Browse files
committed
Fix Shield.SelfHealing.RestartInCombat(Delay) not being parsed from INI correctly
1 parent 57a1c58 commit 34fb1d6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Ext/WarheadType/Body.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -218,7 +218,7 @@ void WarheadTypeExt::ExtData::LoadFromINIFile(CCINIClass* const pINI)
218218
this->Shield_SelfHealing_Rate_InMinutes.Read(exINI, pSection, "Shield.SelfHealing.Rate");
219219
this->Shield_SelfHealing_Rate = (int)(this->Shield_SelfHealing_Rate_InMinutes * 900);
220220
this->Shield_SelfHealing_RestartInCombat.Read(exINI, pSection, "Shield.SelfHealing.RestartInCombat");
221-
this->Shield_SelfHealing_RestartInCombat.Read(exINI, pSection, "Shield.SelfHealing.RestartInCombatDelay");
221+
this->Shield_SelfHealing_RestartInCombatDelay.Read(exINI, pSection, "Shield.SelfHealing.RestartInCombatDelay");
222222
this->Shield_SelfHealing_RestartTimer.Read(exINI, pSection, "Shield.SelfHealing.RestartTimer");
223223
this->Shield_AttachTypes.Read(exINI, pSection, "Shield.AttachTypes");
224224
this->Shield_RemoveTypes.Read(exINI, pSection, "Shield.RemoveTypes");

0 commit comments

Comments
 (0)