Skip to content

Commit 90a98d0

Browse files
committed
Update Guava dependency to version 33.3.1 and modify storage GUI layout
1 parent 79f4c2a commit 90a98d0

3 files changed

Lines changed: 24 additions & 22 deletions

File tree

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ allprojects {
99
apply plugin: 'maven-publish'
1010

1111
group = 'github.nighter'
12-
version = '1.5.0'
12+
version = '1.5.1'
1313

1414
repositories {
1515
mavenCentral()

core/build.gradle

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ dependencies {
3232
implementation 'org.bstats:bstats-bukkit:3.1.0'
3333

3434
// Guava
35-
implementation 'com.google.guava:guava:32.1.3-jre'
35+
implementation 'com.google.guava:guava:33.3.1-jre'
3636
}
3737

3838
jar {
@@ -43,14 +43,10 @@ jar {
4343
from { project(':NMS:v1_21').sourceSets.main.output }
4444
from { project(':NMS:v1_21_4').sourceSets.main.output }
4545
from { project(':NMS:v1_21_6').sourceSets.main.output }
46-
47-
// destinationDirectory = file('C:\\Users\\ADMIN\\OneDrive\\Desktop\\Paper1_21_6\\plugins\\')
4846
from sourceSets.main.output
49-
5047
duplicatesStrategy = DuplicatesStrategy.EXCLUDE
51-
52-
// Exclude unnecessary files
5348
exclude 'META-INF/*.RSA', 'META-INF/*.SF', 'META-INF/*.DSA'
49+
// destinationDirectory = file('C:\\Users\\notni\\OneDrive\\Desktop\\paper_1.21.8\\plugins')
5450
}
5551

5652
processResources {
Lines changed: 21 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,36 +1,42 @@
11
# Default Storage GUI Layout Configuration
22
# Slot positions: 1-9 corresponds to inventory slots 46-54 (bottom row)
3-
# Valid materials can be found at: https://jd.papermc.io/paper/1.21.6/org/bukkit/Material.html
3+
# Valid materials can be found at: https://jd.papermc.io/paper/1.21.8/org/bukkit/Material.html
44

55
buttons:
6+
7+
# Previous page navigation button
8+
previous_page:
9+
slot: 1
10+
material: SPECTRAL_ARROW
11+
enabled: true
12+
613
# Discard all items button
714
discard_all:
8-
slot: 1
15+
slot: 3
916
material: CAULDRON
1017
enabled: true
1118

1219
# Item filter configuration button
1320
item_filter:
14-
slot: 2
21+
slot: 4
1522
material: HOPPER
1623
enabled: true
1724

18-
# Previous page navigation button
19-
previous_page:
20-
slot: 4
21-
material: SPECTRAL_ARROW
25+
# Return to main menu button
26+
return:
27+
slot: 5
28+
material: RED_STAINED_GLASS_PANE
2229
enabled: true
2330

2431
# Take all items button
2532
take_all:
26-
slot: 5
33+
slot: 6
2734
material: CHEST
2835
enabled: true
2936

30-
# Next page navigation button
31-
next_page:
32-
slot: 6
33-
material: SPECTRAL_ARROW
37+
drop_page:
38+
slot: 7
39+
material: DROPPER
3440
enabled: true
3541

3642
# Shop/sell indicator button (requires sell integration)
@@ -39,8 +45,8 @@ buttons:
3945
material: GOLD_INGOT
4046
enabled: true
4147

42-
# Return to main menu button
43-
return:
48+
# Next page navigation button
49+
next_page:
4450
slot: 9
45-
material: RED_STAINED_GLASS_PANE
51+
material: SPECTRAL_ARROW
4652
enabled: true

0 commit comments

Comments
 (0)