Skip to content

Commit

Permalink
Fix world offset not being configurable to zero, Closes #322
Browse files Browse the repository at this point in the history
  • Loading branch information
rubensworks committed Feb 3, 2025
1 parent 0484632 commit 68e1da4
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1246,7 +1246,7 @@ public static final class World {
public static final Predicate<ValueTypeDouble.ValueDouble> VALIDATOR_DOUBLE_ANGLE =
input -> input.getRawValue() >= -180D && input.getRawValue() <= 180F;
public static final Predicate<ValueTypeDouble.ValueDouble> VALIDATOR_DOUBLE_OFFSET =
input -> input.getRawValue() >= 0.01D && input.getRawValue() <= 1.01F;
input -> input.getRawValue() >= 0.0D && input.getRawValue() <= 1.01F;

public static final IAspectPropertyTypeInstance<ValueTypeBoolean, ValueTypeBoolean.ValueBoolean> PROP_BLOCK_UPDATE =
new AspectPropertyTypeInstance<>(ValueTypes.BOOLEAN, "aspect.aspecttypes.integratedtunnels.boolean.world.blockupdate");
Expand Down

0 comments on commit 68e1da4

Please sign in to comment.