Skip to content

Commit

Permalink
remove whitespace
Browse files Browse the repository at this point in the history
  • Loading branch information
billy1arm committed Aug 19, 2024
1 parent 1cc7dd7 commit 270ffff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/game/WorldHandlers/SpellEffects.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1380,7 +1380,7 @@ void Spell::EffectDummy(SpellEffectIndex eff_idx)

uint32 possibleSpells[] = {36693, 36694, 36695, 36696, 36697, 36698, 36699, 36700} ;
std::vector<uint32> spellPool(possibleSpells, possibleSpells + countof(possibleSpells));

//std::random_shuffle(spellPool.begin(), spellPool.end());
std::mt19937 rng(std::time(nullptr));
std::shuffle(spellPool.begin(), spellPool.end(), rng);
Expand Down

0 comments on commit 270ffff

Please sign in to comment.