diff options
author | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2024-03-24 10:19:17 +0100 |
---|---|---|
committer | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2024-03-24 10:19:17 +0100 |
commit | 3e7e376578602059e28487419e7b5f69770c7930 (patch) | |
tree | 42f90b2728a89fd0172e6456fc82302564f5e236 /src/main | |
parent | bfeaeac6faa9e31319bb054ec800a13a23b11749 (diff) | |
download | skyhanni-3e7e376578602059e28487419e7b5f69770c7930.tar.gz skyhanni-3e7e376578602059e28487419e7b5f69770c7930.tar.bz2 skyhanni-3e7e376578602059e28487419e7b5f69770c7930.zip |
code cleanup
Diffstat (limited to 'src/main')
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/features/garden/inventory/plots/GardenPlotMenuHighlighting.kt | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/features/garden/inventory/plots/GardenPlotMenuHighlighting.kt b/src/main/java/at/hannibal2/skyhanni/features/garden/inventory/plots/GardenPlotMenuHighlighting.kt index 9fe975499..f2160bc2a 100644 --- a/src/main/java/at/hannibal2/skyhanni/features/garden/inventory/plots/GardenPlotMenuHighlighting.kt +++ b/src/main/java/at/hannibal2/skyhanni/features/garden/inventory/plots/GardenPlotMenuHighlighting.kt @@ -33,7 +33,6 @@ class GardenPlotMenuHighlighting { if (!plot.unlocked && locksEnabled) list.add(PlotStatusType.LOCKED) if (plot == GardenPlotAPI.getCurrentPlot() && currentEnabled) list.add(PlotStatusType.CURRENT) if (plot.isBeingPasted && pastesEnabled) list.add(PlotStatusType.PASTING) - println(plot.isBeingPasted) getLowestIndexItem(list)?.let { index -> val status = config.deskPlotStatusTypes[index] |