File tree 4 files changed +11
-5
lines changed
src/main/java/io/myzticbean/finditemaddon/handlers/gui/menus
4 files changed +11
-5
lines changed Original file line number Diff line number Diff line change
1
+ ## Release 2.0.7.2
2
+ ### Bug fixes
3
+ - Fixed item meta not showing correctly in Search GUI
4
+
1
5
## Release 2.0.7.1
2
6
### Changes
3
7
- Added config option to suppress update notifications in chat
Original file line number Diff line number Diff line change 1
1
# Shop Search AddOn For QuickShop
2
- ### Version: 2.0.7.1 -RELEASE
2
+ ### Version: 2.0.7.2 -RELEASE
3
3
4
4
An unofficial add-on for the QuickShop Hikari and Reremake spigot plugin.
5
5
Adds a ` /finditem ` command in game for searching through all the shops on the server.
Original file line number Diff line number Diff line change 6
6
7
7
<groupId >io.myzticbean.finditemaddon</groupId >
8
8
<artifactId >QSFindItemAddOn</artifactId >
9
- <version >2.0.7.1 -RELEASE</version >
9
+ <version >2.0.7.2 -RELEASE</version >
10
10
<packaging >jar</packaging >
11
11
12
12
<name >QSFindItemAddOn</name >
15
15
<java .version>17</java .version>
16
16
<project .build.sourceEncoding>UTF-8</project .build.sourceEncoding>
17
17
<spigot .version>1.21-R0.1-SNAPSHOT</spigot .version>
18
+ <playerwarps-api-old >6.30.0</playerwarps-api-old >
19
+ <playerwarps-api-new >7.7.1</playerwarps-api-new >
18
20
</properties >
19
21
20
22
<build >
247
249
<dependency >
248
250
<groupId >com.olziedev</groupId >
249
251
<artifactId >playerwarps-api</artifactId >
250
- <version >6.30.0 </version >
252
+ <version >${playerwarps-api-old} </version >
251
253
<scope >provided</scope >
252
254
<exclusions >
253
255
<exclusion >
259
261
<dependency >
260
262
<groupId >com.olziedev</groupId >
261
263
<artifactId >playerwarps-api</artifactId >
262
- <version >7.6.1 </version >
264
+ <version >${playerwarps-api-new} </version >
263
265
<scope >provided</scope >
264
266
</dependency >
265
267
<dependency >
Original file line number Diff line number Diff line change @@ -467,7 +467,7 @@ public void setMenuItems(List<FoundShopItemModel> foundShops) {
467
467
private @ NotNull ItemStack createShopItem (@ NotNull FoundShopItemModel foundShop ) {
468
468
// Create a new ItemStack based on the shop's item
469
469
ItemStack item = new ItemStack (foundShop .getItem ().getType (), foundShop .getItem ().getAmount ());
470
- ItemMeta meta = item .getItemMeta ();
470
+ ItemMeta meta = foundShop . getItem () .getItemMeta ();
471
471
if (meta == null ) {
472
472
meta = Bukkit .getItemFactory ().getItemMeta (item .getType ());
473
473
}
You can’t perform that action at this time.
0 commit comments