Compare commits

...

8 Commits
1.3.0 ... 1.5.0

Author SHA1 Message Date
Auxilor
2835eeaa5d libreforge-updater 2022-06-20 21:38:10 +01:00
Auxilor
1647a5dfaf 1.4.0 2022-06-20 21:36:33 +01:00
Auxilor
3d260e82ae Fixed pet GUI 2022-06-20 21:36:24 +01:00
Auxilor
1fdbd064a9 Updated libreforge 2022-06-20 18:06:02 +01:00
Auxilor
94d1802b51 libreforge-updater 2022-06-20 14:17:43 +01:00
Auxilor
8604bf7b46 Updated to 1.3.1 2022-06-20 14:09:46 +01:00
Will FP
c21eecae11 Merge pull request #3 from Sedri05/master
Fixed default perm for pets menu
2022-06-20 14:06:02 +01:00
Sedri05
80950aecf3 Fixed default perm for pets menu 2022-06-19 13:18:47 +02:00
4 changed files with 7 additions and 7 deletions

View File

@@ -48,7 +48,7 @@ allprojects {
dependencies { dependencies {
compileOnly 'com.willfp:eco:6.37.1' compileOnly 'com.willfp:eco:6.37.1'
implementation 'com.willfp:libreforge:3.65.0' implementation 'com.willfp:libreforge:3.67.0'
implementation 'org.joml:joml:1.10.4' implementation 'org.joml:joml:1.10.4'
compileOnly 'org.jetbrains:annotations:23.0.0' compileOnly 'org.jetbrains:annotations:23.0.0'

View File

@@ -13,7 +13,6 @@ import org.bukkit.Material
import org.bukkit.Sound import org.bukkit.Sound
import org.bukkit.entity.Player import org.bukkit.entity.Player
import org.bukkit.inventory.ItemStack import org.bukkit.inventory.ItemStack
import org.checkerframework.checker.units.qual.m
import kotlin.math.ceil import kotlin.math.ceil
import kotlin.math.max import kotlin.math.max
import kotlin.math.min import kotlin.math.min
@@ -42,8 +41,8 @@ object PetsGUI {
val bottomRightColumn = plugin.configYml.getInt("gui.pet-area.bottom-right.column") val bottomRightColumn = plugin.configYml.getInt("gui.pet-area.bottom-right.column")
petAreaSlots.clear() petAreaSlots.clear()
for (column in topLeftColumn..bottomRightColumn) { for (row in topLeftRow..bottomRightRow) {
for (row in topLeftRow..bottomRightRow) { for (column in topLeftColumn..bottomRightColumn) {
petAreaSlots.add(Pair(row, column)) petAreaSlots.add(Pair(row, column))
} }
} }

View File

@@ -32,7 +32,8 @@ commands:
aliases: aliases:
- pet - pet
description: Open the pets menu description: Open the pets menu
permission: ecopets.command.skills permission: ecopets.command.pets
default: true
permissions: permissions:
ecopets.*: ecopets.*:

View File

@@ -1,4 +1,4 @@
#libreforge-updater #libreforge-updater
#Sun Jun 19 12:18:45 BST 2022 #Mon Jun 20 21:38:10 BST 2022
version=1.3.0 version=1.5.0
plugin-name=EcoPets plugin-name=EcoPets