From c032a32f007866d8d2d73b2d1e78bc4ac1527336 Mon Sep 17 00:00:00 2001 From: VyperzDev Date: Wed, 14 Feb 2024 18:47:39 -0600 Subject: [PATCH] Update PatternPain --- .../stefvanschie/inventoryframework/pane/PatternPane.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/IF/src/main/java/com/github/stefvanschie/inventoryframework/pane/PatternPane.java b/IF/src/main/java/com/github/stefvanschie/inventoryframework/pane/PatternPane.java index 1f52f07e1..86a02db3a 100644 --- a/IF/src/main/java/com/github/stefvanschie/inventoryframework/pane/PatternPane.java +++ b/IF/src/main/java/com/github/stefvanschie/inventoryframework/pane/PatternPane.java @@ -229,9 +229,9 @@ public PatternPane copy() { patternPane.uuid = uuid; - patternPane.setRotation(getRotation()); - patternPane.flipHorizontally(isFlippedHorizontally()); - patternPane.flipVertically(isFlippedVertically()); + patternPane.rotation = rotation; + patternPane.flippedHorizontally = flippedHorizontally; + patternPane.flippedVertically = flippedVertically; return patternPane; }