Skip to content

Commit

Permalink
Priest: run clang-format
Browse files Browse the repository at this point in the history
  • Loading branch information
scamille committed Nov 23, 2021
1 parent c68f938 commit 777f890
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 9 deletions.
4 changes: 2 additions & 2 deletions engine/class_modules/priest/sc_priest.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2377,9 +2377,9 @@ struct priest_module_t final : public module_t
void init( player_t* p ) const override
{
p->buffs.guardian_spirit = make_buff( p, "guardian_spirit",
p->find_spell( 47788 ) ); // Let the ability handle the CD
p->find_spell( 47788 ) ); // Let the ability handle the CD
p->buffs.pain_suppression = make_buff( p, "pain_suppression",
p->find_spell( 33206 ) ); // Let the ability handle the CD
p->find_spell( 33206 ) ); // Let the ability handle the CD
p->buffs.benevolent_faerie = make_buff<buffs::benevolent_faerie_t>( p );
}
void static_init() const override
Expand Down
2 changes: 1 addition & 1 deletion engine/class_modules/priest/sc_priest_discipline.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -275,7 +275,7 @@ struct spirit_shell_t final : public priest_spell_t
}
};

} // namespace actions
} // namespace actions::spells

namespace buffs
{
Expand Down
10 changes: 4 additions & 6 deletions engine/class_modules/priest/sc_priest_holy.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@

#include "simulationcraft.hpp"


namespace priestspace
{
namespace actions::spells
Expand Down Expand Up @@ -152,7 +151,7 @@ struct holy_heal_t final : public priest_heal_t
}
};

} // namespace actions
} // namespace actions::spells

void priest_t::create_buffs_holy()
{
Expand All @@ -168,15 +167,14 @@ void priest_t::init_spells_holy()
{
// Talents
// T15
talents.enlightenment = find_talent_spell( "Enlightenment" );
talents.enlightenment = find_talent_spell( "Enlightenment" );
// T50
talents.light_of_the_naaru = find_talent_spell( "Light of the Naaru" );
talents.apotheosis = find_talent_spell( "Apotheosis" );
talents.light_of_the_naaru = find_talent_spell( "Light of the Naaru" );
talents.apotheosis = find_talent_spell( "Apotheosis" );

// General Spells
specs.holy_words = find_specialization_spell( "Holy Words" );
specs.holy_word_serenity = find_specialization_spell( "Holy Word: Serenity" );

}

action_t* priest_t::create_action_holy( util::string_view name, util::string_view options_str )
Expand Down

0 comments on commit 777f890

Please sign in to comment.