Skip to content

Commit

Permalink
change - to + in winter temp shift
Browse files Browse the repository at this point in the history
  • Loading branch information
TheDeathlyCow committed Dec 8, 2023
1 parent 21d4166 commit 0233f00
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ private int getNaturalWorldTemperatureChange(World world, BlockPos pos) {
int temp = category.getTemperatureChange(world);
if (temp < 0) {
if (FrostifulIntegrations.isWinter(world)) {
temp -= Frostiful.getConfig().environmentConfig.getWinterTemperatureShift();
temp += Frostiful.getConfig().environmentConfig.getWinterTemperatureShift();
}
return temp;
}
Expand Down

0 comments on commit 0233f00

Please sign in to comment.