From 97dc21ba10693a75485c995ca11739e6124a0d5d Mon Sep 17 00:00:00 2001 From: GitHub Actions Date: Sat, 9 Nov 2024 21:49:49 +0000 Subject: [PATCH] Code format - (Clang-format) --- src/creatures/players/wheel/player_wheel.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/creatures/players/wheel/player_wheel.cpp b/src/creatures/players/wheel/player_wheel.cpp index 361a5b45512..c8ab1b38f1c 100644 --- a/src/creatures/players/wheel/player_wheel.cpp +++ b/src/creatures/players/wheel/player_wheel.cpp @@ -960,8 +960,8 @@ int PlayerWheel::getSpellAdditionalDuration(const std::string &spellName) const bool PlayerWheel::handleTwinBurstsCooldown(const std::shared_ptr &player, const std::string &spellName, int spellCooldown, int rateCooldown) const { // Map of spell pairs for Twin Bursts static const std::unordered_map spellPairs = { - {"Terra Burst", "Ice Burst"}, - {"Ice Burst", "Terra Burst"} + { "Terra Burst", "Ice Burst" }, + { "Ice Burst", "Terra Burst" } }; auto it = spellPairs.find(spellName); @@ -979,8 +979,8 @@ bool PlayerWheel::handleTwinBurstsCooldown(const std::shared_ptr &player bool PlayerWheel::handleBeamMasteryCooldown(const std::shared_ptr &player, const std::string &spellName, int spellCooldown, int rateCooldown) const { static const std::unordered_map 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);