Skip to content

Commit

Permalink
fix: use the correct default value for direction in the weather config
Browse files Browse the repository at this point in the history
  • Loading branch information
ghost91- committed Jan 9, 2022
1 parent f8eb819 commit 9c60715
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/module/weatherEffects/effects/AbstractWeatherEffect.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ export class AbstractWeatherEffect extends SpecialEffect {
label: "FXMASTER.Direction",
type: "range",
min: 0,
value: (this.CONFIG.startRotation.min + this.CONFIG.startRotation.min) / 2,
value: (this.CONFIG.startRotation.min + this.CONFIG.startRotation.max) / 2,
max: 360,
step: 10,
step: 5,
decimals: 0,
},
speed: {
Expand Down

0 comments on commit 9c60715

Please sign in to comment.