Skip to content

Commit 46704b0

Browse files
committed
Fix build error
1 parent 59245dc commit 46704b0

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

src/main/java/org/maxgamer/quickshop/shop/ShopLoader.java

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,8 @@ public void loadShops(@Nullable String worldName) {
114114
data.getType(),
115115
data.getExtra(),
116116
data.getCurrency(),
117-
data.isDisableDisplay());
117+
data.isDisableDisplay(),
118+
data.getTaxAccount());
118119
if (data.needUpdate.get()) {
119120
shop.setDirty();
120121
}
@@ -306,7 +307,8 @@ public synchronized void recoverFromFile(@NotNull String fileContent) {
306307
data.getType(),
307308
data.getExtra(),
308309
data.getCurrency(),
309-
data.isDisableDisplay());
310+
data.isDisableDisplay(),
311+
data.getTaxAccount());
310312
if (shopNullCheck(shop)) {
311313
continue;
312314
}
@@ -341,7 +343,8 @@ public List<Shop> getShopsInDatabase() {
341343
databaseInfo.getType(),
342344
databaseInfo.getExtra(),
343345
databaseInfo.getCurrency(),
344-
databaseInfo.isDisableDisplay());
346+
databaseInfo.isDisableDisplay(),
347+
databaseInfo.getTaxAccount());
345348
shopsInDatabaseList.add(shop);
346349
} catch (Exception e) {
347350
exceptionHandler(e, null);

0 commit comments

Comments
 (0)