Skip to content

Commit

Permalink
[Mage] Phantasmal Image summons 2 extra images
Browse files Browse the repository at this point in the history
  • Loading branch information
vituscze committed Nov 17, 2024
1 parent 9303956 commit 336b52a
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions engine/class_modules/sc_mage.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -7867,6 +7867,8 @@ void mage_t::create_pets()
{
int images = as<int>( talents.mirror_image->effectN( 2 ).base_value() );
images += as<int>( talents.phantasmal_image->effectN( 1 ).base_value() );
if ( bugs && talents.phantasmal_image.ok() )
images += 1;
for ( int i = 0; i < images; i++ )
{
auto image = new pets::mirror_image::mirror_image_pet_t( sim, this );
Expand Down

0 comments on commit 336b52a

Please sign in to comment.