Skip to content

Commit

Permalink
[Mage] Meteor is no longer a class spell
Browse files Browse the repository at this point in the history
  • Loading branch information
vituscze committed Jun 30, 2023
1 parent 7730080 commit f353fbe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion engine/class_modules/sc_mage.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -5987,6 +5987,7 @@ action_t* mage_t::create_action( std::string_view name, std::string_view options
if ( name == "fireball" ) return new fireball_t( name, this, options_str );
if ( name == "flamestrike" ) return new flamestrike_t( name, this, options_str );
if ( name == "living_bomb" ) return new living_bomb_t( name, this, options_str );
if ( name == "meteor" ) return new meteor_t( name, this, options_str );
if ( name == "phoenix_flames" ) return new phoenix_flames_t( name, this, options_str );
if ( name == "pyroblast" ) return new pyroblast_t( name, this, options_str );
if ( name == "scorch" ) return new scorch_t( name, this, options_str );
Expand Down Expand Up @@ -6018,7 +6019,6 @@ action_t* mage_t::create_action( std::string_view name, std::string_view options
if ( name == "frostbolt" ) return new frostbolt_t( name, this, options_str );
if ( name == "ice_floes" ) return new ice_floes_t( name, this, options_str );
if ( name == "ice_nova" ) return new ice_nova_t( name, this, options_str );
if ( name == "meteor" ) return new meteor_t( name, this, options_str );
if ( name == "mirror_image" ) return new mirror_image_t( name, this, options_str );
if ( name == "shifting_power" ) return new shifting_power_t( name, this, options_str );
if ( name == "shimmer" ) return new shimmer_t( name, this, options_str );
Expand Down

0 comments on commit f353fbe

Please sign in to comment.