From 24a85e3b7cfb6f816a991c7d9cfe783a79166a6b Mon Sep 17 00:00:00 2001 From: Relintai Date: Wed, 29 Jul 2020 15:51:10 +0200 Subject: [PATCH] Fix uninitialized variable. --- pipelines/spell_heal_info.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/pipelines/spell_heal_info.cpp b/pipelines/spell_heal_info.cpp index c1f068d..eaa6074 100644 --- a/pipelines/spell_heal_info.cpp +++ b/pipelines/spell_heal_info.cpp @@ -221,6 +221,7 @@ SpellHealInfo::SpellHealInfo() { _heal_source_type = HEAL_SOURCE_UNKNOWN; //Ref _heal_source = Ref<; _heal_source_id = 0; + _immune = false; } SpellHealInfo::~SpellHealInfo() {