File tree Expand file tree Collapse file tree 2 files changed +13
-1
lines changed
src/main/java/com/eternalcode/parcellockers/configuration/implementation Expand file tree Collapse file tree 2 files changed +13
-1
lines changed Original file line number Diff line number Diff line change @@ -160,7 +160,7 @@ tasks {
160
160
" org.bstats" ,
161
161
" org.json" ,
162
162
" org.postgresql" ,
163
- " net.dzikoysk" ,
163
+ // "net.dzikoysk",
164
164
" net.kyori" ,
165
165
" io.papermc" ,
166
166
" io.sentry" ,
Original file line number Diff line number Diff line change @@ -52,55 +52,67 @@ public GuiItem toGuiItem(GuiAction<InventoryClickEvent> action) {
52
52
.glow (this .glow );
53
53
}
54
54
55
+ @ Exclude
55
56
public GuiItem toGuiItem () {
56
57
return this .toBuilder ().asGuiItem ();
57
58
}
58
59
60
+ @ Exclude
59
61
public ItemStack toItemStack () {
60
62
return this .toBuilder ().build ();
61
63
}
62
64
65
+ @ Exclude
63
66
public Material getType () {
64
67
return this .type ;
65
68
}
66
69
70
+ @ Exclude
67
71
public String getName () {
68
72
return this .name ;
69
73
}
70
74
75
+ @ Exclude
71
76
public List <String > getLore () {
72
77
return this .lore ;
73
78
}
74
79
80
+ @ Exclude
75
81
public boolean isGlow () {
76
82
return this .glow ;
77
83
}
78
84
85
+ @ Exclude
79
86
public ConfigItem setType (Material type ) {
80
87
this .type = type ;
81
88
return this ;
82
89
}
83
90
91
+ @ Exclude
84
92
public ConfigItem setName (String name ) {
85
93
this .name = name ;
86
94
return this ;
87
95
}
88
96
97
+ @ Exclude
89
98
public ConfigItem setLore (List <String > lore ) {
90
99
this .lore = lore ;
91
100
return this ;
92
101
}
93
102
103
+ @ Exclude
94
104
public ConfigItem addLore (String lore ) {
95
105
this .lore .add (lore );
96
106
return this ;
97
107
}
98
108
109
+ @ Exclude
99
110
public ConfigItem setGlow (boolean glow ) {
100
111
this .glow = glow ;
101
112
return this ;
102
113
}
103
114
115
+ @ Exclude
104
116
@ Override
105
117
public ConfigItem clone () {
106
118
try {
You can’t perform that action at this time.
0 commit comments