File tree Expand file tree Collapse file tree 1 file changed +6
-3
lines changed
src/main/java/org/maxgamer/quickshop/shop Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Original file line number Diff line number Diff 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 );
You can’t perform that action at this time.
0 commit comments