Skip to content

Commit

Permalink
Code format - (Clang-format)
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Nov 9, 2024
1 parent daaf348 commit 97dc21b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/creatures/players/wheel/player_wheel.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -960,8 +960,8 @@ int PlayerWheel::getSpellAdditionalDuration(const std::string &spellName) const
bool PlayerWheel::handleTwinBurstsCooldown(const std::shared_ptr<Player> &player, const std::string &spellName, int spellCooldown, int rateCooldown) const {
// Map of spell pairs for Twin Bursts
static const std::unordered_map<std::string, std::string> spellPairs = {
{"Terra Burst", "Ice Burst"},
{"Ice Burst", "Terra Burst"}
{ "Terra Burst", "Ice Burst" },
{ "Ice Burst", "Terra Burst" }
};

auto it = spellPairs.find(spellName);
Expand All @@ -979,8 +979,8 @@ bool PlayerWheel::handleTwinBurstsCooldown(const std::shared_ptr<Player> &player

bool PlayerWheel::handleBeamMasteryCooldown(const std::shared_ptr<Player> &player, const std::string &spellName, int spellCooldown, int rateCooldown) const {
static const std::unordered_map<std::string, std::string> spellPairs = {
{"Great Death Beam", "Great Energy Beam"},
{"Great Energy Beam", "Great Death Beam"}
{ "Great Death Beam", "Great Energy Beam" },
{ "Great Energy Beam", "Great Death Beam" }
};

auto it = spellPairs.find(spellName);
Expand Down

0 comments on commit 97dc21b

Please sign in to comment.