Skip to content

Commit

Permalink
chore: send an error if the player doesnt have the blackened urn (#357)
Browse files Browse the repository at this point in the history
  • Loading branch information
Nyeriah authored Sep 27, 2023
1 parent 7c945e6 commit 931dcbe
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/Bracket_70_2_2/scripts/Karazhan/instance_karazhan.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,10 @@ class go_blackened_urn_70 : public GameObjectScript
cr->GetMotionMaster()->MovePoint(0, IntroWay[0][0], IntroWay[0][1], IntroWay[0][2]);
}
}
else
{
player->SendSystemMessage("You must possess a Blackened Urn in order to summon Nightbane!");
}
return false;
}
};
Expand Down

0 comments on commit 931dcbe

Please sign in to comment.