Skip to content

Commit

Permalink
apply to non-player entities by default
Browse files Browse the repository at this point in the history
  • Loading branch information
der-fruhling committed Jun 10, 2024
1 parent 788a51a commit 5ce2bcb
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ private ModConfig() {}
public boolean rollEnabled = true;
public float rollMagnitude = 1.0f;
public boolean applyToOthers = true;
public boolean applyToNonPlayerEntities = false;
public boolean applyToNonPlayerEntities = true;
public boolean dbgShowStandingTransforms = false;

private static final Gson GSON = new GsonBuilder().setPrettyPrinting().create();
Expand Down Expand Up @@ -157,7 +157,7 @@ public static Screen createConfigScreen(Screen parent) {
.setSaveConsumer(value -> INSTANCE.rollMagnitude = value)
.setDefaultValue(1.0f)
.build());

advanced.add(entryBuilder
.startBooleanToggle(
Component.translatable("option.create_train_perspective.multiplayer.apply_to_entities"),
Expand Down

0 comments on commit 5ce2bcb

Please sign in to comment.