Skip to content

Commit

Permalink
-
Browse files Browse the repository at this point in the history
  • Loading branch information
Mrbysco committed Nov 28, 2024
1 parent f814912 commit ee9437b
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ public class ArmorGlowScreen extends Screen {
private Button locateButton;
private Button modifyButton;

public ArmorStandScreen parentScreen;
public final ArmorStandScreen parentScreen;

public ArmorGlowScreen(ArmorStandScreen parent) {
super(Component.translatable("armorposer.gui.armor_list.list"));
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ Component getButtonText() {
private boolean sorted = false;
private SortType sortType = SortType.NORMAL;

public ArmorStandScreen parentScreen;
public final ArmorStandScreen parentScreen;

public ArmorPosesScreen(ArmorStandScreen parent) {
super(Component.translatable("armorposer.gui.poses.title"));
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,6 @@
import org.joml.Quaternionf;
import org.joml.Vector3f;

import java.util.function.Function;

public class PoseListWidget extends ObjectSelectionList<PoseListWidget.ListEntry> {
private static final Vector3f ARMOR_STAND_TRANSLATION = new Vector3f();
private static final Quaternionf ARMOR_STAND_ANGLE = new Quaternionf().rotationXYZ(0.43633232F, 0.0F, (float) Math.PI);
Expand Down

0 comments on commit ee9437b

Please sign in to comment.