Skip to content

Commit

Permalink
Reduced the gold awarded per wave by 50%
Browse files Browse the repository at this point in the history
  • Loading branch information
jlfarris91 committed Apr 22, 2021
1 parent decf933 commit c267770
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion wurst/Game/Waves/Generation/NormalNightWaveGenerator.wurst
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ function defineSpawnWaves()

// ============================================================================
function getStandardGoldRewardForWave(IGameWaveProgress progress) returns int
return progress.getCurrentWaveNumber() * 2
return progress.getCurrentWaveNumber()

// ============================================================================
public class NormalNightWaveGenerator implements IWaveGenerator<NightWave>
Expand Down

0 comments on commit c267770

Please sign in to comment.