Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

1.21.4 is broken or doesnt work correctly #616

Open
4 tasks done
BenTheMan69 opened this issue Dec 16, 2024 · 5 comments
Open
4 tasks done

1.21.4 is broken or doesnt work correctly #616

BenTheMan69 opened this issue Dec 16, 2024 · 5 comments

Comments

@BenTheMan69
Copy link

BenTheMan69 commented Dec 16, 2024

What is happening?

The Plugin doesnt load on my 1.21.4 Paper/Spigot Server as it should. it is shown as red in the plugin menu when typing /plugins and trying a command shows an error.

What did you expect to happen?

for the plugin to load correctly without showing errors and provide shops

Plugin Version

ChestShop Version 3.12.2 (build 353)

Plugin Config

# Should the plugin log some messages that are useful for debugging?
DEBUG: false

# Do you want to turn off the automatic updates of ChestShop?
TURN_OFF_UPDATES: true
# Do you want to turn off the automatic notifications for releases?
TURN_OFF_UPDATE_NOTIFIER: false
# Do you want to turn off the automatic notifications for new development builds?
TURN_OFF_DEV_UPDATE_NOTIFIER: false
# Do you want to include some values of this config in the metrics? (This will not submit any sensitive data and helps in the development process)
INCLUDE_SETTINGS_IN_METRICS: true

# How large should the internal caches be?
CACHE_SIZE: 1000

# The default language when the client's language can't be found.
DEFAULT_LANGUAGE: "en"
# Should the plugin try to use a language file that matches the client's locale setting?
USE_CLIENT_LOCALE: true
# Should the plugin strip the colors from formatted price?
STRIP_PRICE_COLORS: false

# What containers are allowed to hold a shop? (Only blocks with inventories work!)
SHOP_CONTAINERS: 
- "CHEST"
- "TRAPPED_CHEST"

# (In 1/1000th of a second) How often can a player use the shop sign?
SHOP_INTERACTION_INTERVAL: 250
# Do you want to block people in creative mode from using shops?
IGNORE_CREATIVE_MODE: true
# Do you want to block people who have access to a shop due to their permissions from using it? (owners are always ignored)
IGNORE_ACCESS_PERMS: true
# If true, people will buy with left-click and sell with right-click.
REVERSE_BUTTONS: false
# If true, people will be able to buy/sell in 64 stacks while holding the crouch button.
SHIFT_SELLS_IN_STACKS: false
# If true, people will be able to sell/buy everything available of the same type.
SHIFT_SELLS_EVERYTHING: false
# What can you do by clicking shift with SHIFT_SELLS_IN_STACKS turned on? (ALL/BUY/SELL)
SHIFT_ALLOWS: "ALL"
# Can shop's chest be opened by owner with right-clicking a shop's sign?
ALLOW_SIGN_CHEST_OPEN: false
# If true and in 1.14+, the owner of a chest shop can click with a dye / ink sac to dye the sign.
SIGN_DYING: true
# If true, when you left-click your own shop sign you won't open chest's inventory, but instead you will start destroying the sign.
ALLOW_LEFT_CLICK_DESTROYING: true

# If true, if the shop is empty, the sign is destroyed and put into the chest, so the shop isn't usable anymore.
REMOVE_EMPTY_SHOPS: false
# If true, if the REMOVE_EMPTY_SHOPS option is turned on, the chest is also destroyed.
REMOVE_EMPTY_CHESTS: false
# A list of worlds in which to remove empty shops with the previous config. Case sensitive. An empty list means all worlds.
REMOVE_EMPTY_WORLDS: 
- "world1"
- "world2"

# First line of your Admin Shop's sign should look like this:
ADMIN_SHOP_NAME: "Admin Shop"
# Make all admin shops be unlimited even if they have a shop container at the sign
FORCE_UNLIMITED_ADMIN_SHOP: false
# The name of the economy account which Admin Shops should use and to which all taxes will go
SERVER_ECONOMY_ACCOUNT: ""
# The uuid of the economy account for the Admin Shop. Useful for fake accounts as normally only accounts of players work
SERVER_ECONOMY_ACCOUNT_UUID: 00000000-0000-0000-0000-000000000000
# Percent of the price that should go to the server's account. (100 = 100 percent)
TAX_AMOUNT: 0.0
# Percent of the price that should go to the server's account when buying from an Admin Shop.
SERVER_TAX_AMOUNT: 0.0
# Amount of money player must pay to create a shop
SHOP_CREATION_PRICE: 0
# How much money do you get back when destroying a sign?
SHOP_REFUND_PRICE: 0
# How many decimal places are allowed at a maximum for prices?
PRICE_PRECISION: 2
# This makes sure that the UUIDs of player shop accounts match the server's online-mode setting. Disabling this might lead to issues with offline players and is therefore unsupported!
ENSURE_CORRECT_PLAYERID: true
# This regexp validates the name of the player. If the name doesn't match, the player will neither be able to create a valid shop sign, nor buy/sell from a shop.
# Note for Bedrock support: If you have Floodgate on your server, you should set this regexp to ^\\.?\\w+$ and ENSURE_CORRECT_PLAYERID to false
# If your Floodgate prefix is not a dot, then change the first . in the regexp (the one before the question mark) to whatever your prefix is.
VALID_PLAYERNAME_REGEXP: "^\\w+$"

# Should we block shops that sell things for more than they buy? (This prevents newbies from creating shops that would be exploited)
BLOCK_SHOPS_WITH_SELL_PRICE_HIGHER_THAN_BUY_PRICE: true

# Maximum amount of items that can be bought/sold at a shop. Default 3456 is a double chest of 64 stacks.
MAX_SHOP_AMOUNT: 3456

# Do you want to allow other players to build a shop on a block where there's one already?
ALLOW_MULTIPLE_SHOPS_AT_ONE_BLOCK: false
# Can shops be used even when the buyer/seller doesn't have enough items, space or money? (The price will be scaled adequately to the item amount)
ALLOW_PARTIAL_TRANSACTIONS: true
# Can '?' be put in place of item name in order for the sign to be auto-filled?
ALLOW_AUTO_ITEM_FILL: true

# Enable this if you use BungeeCord and want players to receive shop notifications on other servers
BUNGEECORD_MESSAGES: false

# Do you want to show "Out of stock" messages?
SHOW_MESSAGE_OUT_OF_STOCK: true
# Do you want to show "Full shop" messages?
SHOW_MESSAGE_FULL_SHOP: true
# How many seconds do you want to wait before showing notifications for the same shop to the owner again?
NOTIFICATION_MESSAGE_COOLDOWN: 10

# Can players hide the "Out of stock" messages with /cstoggle?
CSTOGGLE_TOGGLES_OUT_OF_STOCK: false
# Can players hide the "Full shop" messages with /cstoggle?
CSTOGGLE_TOGGLES_FULL_SHOP: false
# Do you want to show "You bought/sold... " messages?
SHOW_TRANSACTION_INFORMATION_CLIENT: true
# Do you want to show "Somebody bought/sold... " messages?
SHOW_TRANSACTION_INFORMATION_OWNER: true

# If true, plugin will log transactions in its own file
LOG_TO_FILE: false
# Do you want ChestShop's transaction messages to show up in console?
LOG_TO_CONSOLE: true
# Should all shop removals be logged?
LOG_ALL_SHOP_REMOVALS: true

# Do you want to stack all items up to 64 item stacks?
STACK_TO_64: false
# Do you want to use built-in protection against chest destruction?
USE_BUILT_IN_PROTECTION: true
# Do you want to have shop signs "stick" to chests?
STICK_SIGNS_TO_CHESTS: false
# EXPERIMENTAL: Do you want to turn off the default protection when another plugin is protecting the block? (Will leave the chest visually open - CraftBukkit bug!)
TURN_OFF_DEFAULT_PROTECTION_WHEN_PROTECTED_EXTERNALLY: false
# Do you want to turn off the default sign protection? Warning! Other players will be able to destroy other people's shops!
TURN_OFF_SIGN_PROTECTION: false
# Do you want to disable the hopper protection, which prevents Hopper-Minecarts from taking items out of shops?
TURN_OFF_HOPPER_PROTECTION: false
# Only allow users to buy/sell that have access to the sign's protection? (E.g. LWC protection)
CHECK_ACCESS_FOR_SHOP_USE: false
# Do you want to protect shop chests with LWC?
PROTECT_CHEST_WITH_LWC: false
# Of which type should the container protection be? Possible type: public, private, donate and on some LWC versions display
LWC_CHEST_PROTECTION_TYPE: "PRIVATE"
# Do you want to protect shop signs with LWC?
PROTECT_SIGN_WITH_LWC: false
# Of which type should the sign protection be? Possible type: public, private, donate and on some LWC versions display
LWC_SIGN_PROTECTION_TYPE: "PRIVATE"
# Should the chest's LWC protection be removed once the shop sign is destroyed? 
REMOVE_LWC_PROTECTION_AUTOMATICALLY: true
# Should LWC limits block shop creations?
LWC_LIMITS_BLOCK_CREATION: true

# Do you want to only let people build inside WorldGuard regions?
WORLDGUARD_INTEGRATION: false
# Do you want to only let people build inside region flagged by doing /region regionName flag allow-shop allow?
WORLDGUARD_USE_FLAG: false
# Do you want ChestShop to respect WorldGuard's chest protection?
WORLDGUARD_USE_PROTECTION: false

# Do you want to only let people build inside GriefPrevention claims?
GRIEFPREVENTION_INTEGRATION: false

# Do you want to only let people build inside RedProtect regions?
REDPROTECT_INTEGRATION: false

# Do you want to deny shop access to unlogged users?
AUTHME_HOOK: true
# Do you want to allow shop access to unregistered users? (Example: registration is optional)
AUTHME_ALLOW_UNREGISTERED: false

# How much Heroes exp should people get for creating a ChestShop?
HEROES_EXP: 100.0

# Add icons and make item names hoverable in transaction messages when ShowItem is installed?
SHOWITEM_MESSAGE: true

# Add stock counter to quantity line?
USE_STOCK_COUNTER: false

Server Version

1.21.4 Paper/Spigot Version 15

Server Log

[23:24:15] [ServerMain/INFO]: [bootstrap] Running Java 21 (OpenJDK 64-Bit Server VM 21.0.4+7-LTS; Eclipse Adoptium Temurin-21.0.4+7) on Linux 6.1.0-25-amd64 (amd64)
[23:24:15] [ServerMain/INFO]: [bootstrap] Loading Paper 1.21.4-15-master@bb76819 (2024-12-15T09:48:21Z) for Minecraft 1.21.4
[23:24:15] [ServerMain/INFO]: [PluginInitializerManager] Initializing plugins...
[23:24:16] [ServerMain/INFO]: [PluginInitializerManager] Initialized 20 plugins
[23:24:16] [ServerMain/INFO]: [PluginInitializerManager] Bukkit plugins (20):
 - BedHome (2.35), ChestShop (3.12.2 (build 353)), Chunky (1.4.28), DiscordIntegration (3.5.2), Falling (1.18.1), Geyser-Spigot (2.6.0-SNAPSHOT), GeyserUpdater (1.6.4), Images (2.5.3), InvSeePlusPlus (0.29.11), InvisibleItemFrames (2.16.2), Join-Leave (2.4.3), LuckPerms (5.4.150), MusicBox (2.1.4), NoteBlockAPI (1.6.3), PlaceholderAPI (2.11.6), ProtocolLib (5.4.0-SNAPSHOT-738), TAB (5.0.3), ViaVersion (5.2.0), floodgate (2.2.3-SNAPSHOT (b114-83fbd6e)), voicechat (2.5.26)
[23:24:18] [ServerMain/INFO]: Environment: Environment[sessionHost=https://sessionserver.mojang.com, servicesHost=https://api.minecraftservices.com, name=PROD]
[23:24:19] [ServerMain/INFO]: Loaded 1370 recipes
[23:24:19] [ServerMain/INFO]: Loaded 1481 advancements
[23:24:19] [ServerMain/INFO]: [MCTypeRegistry] Initialising converters for DataConverter...
[23:24:19] [ServerMain/INFO]: [MCTypeRegistry] Finished initialising converters for DataConverter in 120.8ms
[23:24:19] [Server thread/INFO]: Starting minecraft server version 1.21.4
[23:24:19] [Server thread/INFO]: Loading properties
[23:24:19] [Server thread/INFO]: This server is running Paper version 1.21.4-15-master@bb76819 (2024-12-15T09:48:21Z) (Implementing API version 1.21.4-R0.1-SNAPSHOT)
[23:24:19] [Server thread/INFO]: [spark] This server bundles the spark profiler. For more information please visit https://docs.papermc.io/paper/profiling
[23:24:19] [Server thread/INFO]: Server Ping Player Sample Count: 12
[23:24:19] [Server thread/INFO]: Using 4 threads for Netty based IO
[23:24:20] [Server thread/INFO]: [MoonriseCommon] Paper is using 1 worker threads, 1 I/O threads
[23:24:20] [Server thread/INFO]: [ChunkTaskScheduler] Chunk system is using population gen parallelism: true
[23:24:20] [Server thread/INFO]: Default game type: SURVIVAL
[23:24:20] [Server thread/INFO]: Generating keypair
[23:24:20] [Server thread/INFO]: Starting Minecraft server on 0.0.0.0:24691
[23:24:20] [Server thread/INFO]: Using epoll channel type
[23:24:20] [Server thread/INFO]: Paper: Using libdeflate (Linux x86_64) compression from Velocity.
[23:24:20] [Server thread/INFO]: Paper: Using OpenSSL 3.x.x (Linux x86_64) cipher from Velocity.
[23:24:21] [Server thread/INFO]: [ViaVersion] Loading server plugin ViaVersion v5.2.0
[23:24:21] [Server thread/INFO]: [ViaVersion] ViaVersion 5.2.0 is now loaded. Registering protocol transformers and injecting...
[23:24:22] [Via-Mappingloader-0/INFO]: [ViaVersion] Loading block connection mappings ...
[23:24:22] [Via-Mappingloader-0/INFO]: [ViaVersion] Using FastUtil Long2ObjectOpenHashMap for block connections
[23:24:22] [Server thread/INFO]: [floodgate] Loading server plugin floodgate v2.2.3-SNAPSHOT (b114-83fbd6e)
[23:24:22] [Server thread/INFO]: [floodgate] Took 603ms to boot Floodgate
[23:24:22] [Server thread/INFO]: [PlaceholderAPI] Loading server plugin PlaceholderAPI v2.11.6
[23:24:22] [Server thread/INFO]: [NoteBlockAPI] Loading server plugin NoteBlockAPI v1.6.3
[23:24:22] [Server thread/INFO]: [ProtocolLib] Loading server plugin ProtocolLib v5.4.0-SNAPSHOT-738
[23:24:22] [Server thread/WARN]: [ProtocolLib] Version (MC: 1.21.4) has not yet been tested! Proceed with caution.
[23:24:22] [Server thread/INFO]: [LuckPerms] Loading server plugin LuckPerms v5.4.150
[23:24:23] [Server thread/INFO]: [Geyser-Spigot] Loading server plugin Geyser-Spigot v2.6.0-SNAPSHOT
[23:24:23] [Server thread/INFO]: [Geyser-Spigot] Loading extensions...
[23:24:23] [Server thread/INFO]: [Geyser-Spigot] Loaded 0 extension(s)
[23:24:23] [Server thread/INFO]: [Join-Leave] Loading server plugin Join-Leave v2.4.3
[23:24:23] [Server thread/INFO]: Join-Leave Essentials is not installed. Essentials functions Disabled.
[23:24:23] [Server thread/INFO]: [voicechat] Loading server plugin voicechat v2.5.26
[23:24:23] [Server thread/INFO]: [ChestShop] Loading server plugin ChestShop v3.12.2 (build 353)
[23:24:23] [Server thread/INFO]: [Falling] Loading server plugin Falling v1.18.1
[23:24:23] [Server thread/INFO]: [MusicBox] Loading server plugin MusicBox v2.1.4
[23:24:23] [Server thread/INFO]: [InvisibleItemFrames] Loading server plugin InvisibleItemFrames v2.16.2
[23:24:23] [Server thread/INFO]: [Images] Loading server plugin Images v2.5.3
[23:24:23] [Server thread/INFO]: [BedHome] Loading server plugin BedHome v2.35
[23:24:23] [Server thread/INFO]: [Discord Integration 3.5.2] Loading server plugin DiscordIntegration v3.5.2
[23:24:23] [Server thread/INFO]: [InvSee++] Loading server plugin InvSeePlusPlus v0.29.11
[23:24:23] [Server thread/INFO]: [TAB] Loading server plugin TAB v5.0.3
[23:24:23] [Server thread/INFO]: [Chunky] Loading server plugin Chunky v1.4.28
[23:24:23] [Server thread/INFO]: [GeyserUpdater] Loading server plugin GeyserUpdater v1.6.4
[23:24:23] [Server thread/INFO]: Server permissions file permissions.yml is empty, ignoring it
[23:24:23] [Server thread/INFO]: [ProtocolLib] Enabling ProtocolLib v5.4.0-SNAPSHOT-738
[23:24:23] [Server thread/INFO]: [LuckPerms] Enabling LuckPerms v5.4.150
[23:24:23] [Server thread/INFO]:         __    
[23:24:23] [Server thread/INFO]:   |    |__)   LuckPerms v5.4.150
[23:24:23] [Server thread/INFO]:   |___ |      Running on Bukkit - Paper
[23:24:23] [Server thread/INFO]: 
[23:24:23] [Server thread/INFO]: [LuckPerms] Loading configuration...
[23:24:24] [Server thread/INFO]: [LuckPerms] Loading storage provider... [H2]
[23:24:24] [Server thread/INFO]: [LuckPerms] Loading internal permission managers...
[23:24:24] [Server thread/INFO]: [LuckPerms] Performing initial data load...
[23:24:24] [Server thread/INFO]: [LuckPerms] Successfully enabled. (took 939ms)
[23:24:24] [Server thread/INFO]: [Discord Integration 3.5.2] Enabling DiscordIntegration v3.5.2
[23:24:24] [Server thread/INFO]: [Discord Integration 3.5.2] [ACF] Enabled Asynchronous Tab Completion Support!
[23:24:24] [Server thread/INFO]: [Discord Integration 3.5.2] Luck Perms integration enabled
[23:24:24] [Server thread/INFO]: Preparing level "world"
[23:24:24] [Server thread/INFO]: Preparing start region for dimension minecraft:overworld
[23:24:25] [Server thread/INFO]: Preparing spawn area: 0%
[23:24:25] [Server thread/INFO]: Time elapsed: 480 ms
[23:24:25] [Server thread/INFO]: [ViaVersion] Enabling ViaVersion v5.2.0
[23:24:25] [Server thread/INFO]: [ViaVersion] ViaVersion detected server version: 1.21.4 (769)
[23:24:25] [Server thread/WARN]: [ViaVersion] ViaVersion does not have any compatible versions for this server version!
[23:24:25] [Server thread/WARN]: [ViaVersion] Please remember that ViaVersion only adds support for versions newer than the server version.
[23:24:25] [Server thread/WARN]: [ViaVersion] If you need support for older versions you may need to use one or more ViaVersion addons too.
[23:24:25] [Server thread/WARN]: [ViaVersion] In that case please read the ViaVersion resource page carefully or use https://viaversion.com/setup
[23:24:25] [Server thread/WARN]: [ViaVersion] and if you're still unsure, feel free to join our Discord-Server for further assistance.
[23:24:25] [Server thread/INFO]: [floodgate] Enabling floodgate v2.2.3-SNAPSHOT (b114-83fbd6e)
[23:24:25] [Server thread/INFO]: [PlaceholderAPI] Enabling PlaceholderAPI v2.11.6
[23:24:25] [Server thread/INFO]: [PlaceholderAPI] Fetching available expansion information...
[23:24:25] [Server thread/INFO]: [NoteBlockAPI] Enabling NoteBlockAPI v1.6.3
[23:24:25] [Server thread/INFO]: [Geyser-Spigot] Enabling Geyser-Spigot v2.6.0-SNAPSHOT
[23:24:25] [Server thread/INFO]: [Join-Leave] Enabling Join-Leave v2.4.3
[23:24:26] [Server thread/INFO]: Join-Leave Loading plugin assets...
[23:24:26] [Server thread/INFO]: Join-Leave Checking if datafolder exist...
[23:24:26] [Server thread/INFO]: Join-Leave Datafolder exist!
[23:24:26] [Server thread/INFO]: Join-Leave Checking if config exist...
[23:24:26] [Server thread/INFO]: Join-Leave Config exist!
[23:24:26] [Server thread/INFO]: Join-Leave Checking if language config exist...
[23:24:26] [Server thread/INFO]: Join-Leave Language config exist!
[23:24:26] [Server thread/INFO]: Join-Leave Checking if title config exist...
[23:24:26] [Server thread/INFO]: Join-Leave Title config exist!
[23:24:26] [Server thread/INFO]: Join-Leave Checking if sound config exist...
[23:24:26] [Server thread/INFO]: Join-Leave Sound config exist!
[23:24:26] [Server thread/INFO]: Join-Leave Checking if fireworks config exist...
[23:24:26] [Server thread/INFO]: Join-Leave Fireworks config exist!
[23:24:26] [Server thread/INFO]: Join-Leave Plugin assets loaded!
[23:24:26] [Server thread/INFO]: [Join-Leave] Enabled metrics. You may opt-out by changing plugins/bStats/config.yml
[23:24:26] [Server thread/INFO]: [voicechat] Enabling voicechat v2.5.26
[23:24:26] [Server thread/INFO]: [voicechat] Initializing compatibility for Bukkit version 1.21.4-R0.1
[23:24:26] [Server thread/INFO]: [voicechat] Compatibility version 18
[23:24:26] [Server thread/INFO]: [voicechat] Successfully initialized commodore command completion
[23:24:26] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: voicechat [2.5.26]
[23:24:26] [Server thread/INFO]: [voicechat] Successfully registered PlaceholderAPI expansion
[23:24:26] [Server thread/INFO]: [voicechat] Successfully added ViaVersion mappings
[23:24:26] [Server thread/INFO]: [ChestShop] Enabling ChestShop v3.12.2 (build 353)
[23:24:26] [Server thread/ERROR]: [ChestShop] Error while loading field TAX_AMOUNT in configuration config.yml
java.lang.IllegalArgumentException: Can not set static int field com.Acrobot.ChestShop.Configuration.Properties.TAX_AMOUNT to java.lang.Double
	at java.base/jdk.internal.reflect.FieldAccessorImpl.throwSetIllegalArgumentException(FieldAccessorImpl.java:228) ~[?:?]
	at java.base/jdk.internal.reflect.FieldAccessorImpl.throwSetIllegalArgumentException(FieldAccessorImpl.java:232) ~[?:?]
	at java.base/jdk.internal.reflect.MethodHandleIntegerFieldAccessorImpl.set(MethodHandleIntegerFieldAccessorImpl.java:127) ~[?:?]
	at java.base/java.lang.reflect.Field.set(Field.java:834) ~[?:?]
	at ChestShop.jar/com.Acrobot.Breeze.Configuration.Configuration.pairFileAndClass(Configuration.java:87) ~[ChestShop.jar:?]
	at ChestShop.jar/com.Acrobot.ChestShop.ChestShop.loadConfig(ChestShop.java:182) ~[ChestShop.jar:?]
	at ChestShop.jar/com.Acrobot.ChestShop.ChestShop.onEnable(ChestShop.java:142) ~[ChestShop.jar:?]
	at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:288) ~[paper-api-1.21.4-R0.1-SNAPSHOT.jar:?]
	at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202) ~[paper-1.21.4.jar:1.21.4-15-bb76819]
	at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109) ~[paper-1.21.4.jar:1.21.4-15-bb76819]
	at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520) ~[paper-api-1.21.4-R0.1-SNAPSHOT.jar:?]
	at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:655) ~[paper-1.21.4.jar:1.21.4-15-bb76819]
	at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:604) ~[paper-1.21.4.jar:1.21.4-15-bb76819]
	at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:769) ~[paper-1.21.4.jar:1.21.4-15-bb76819]
	at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:531) ~[paper-1.21.4.jar:1.21.4-15-bb76819]
	at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:326) ~[paper-1.21.4.jar:1.21.4-15-bb76819]
	at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1236) ~[paper-1.21.4.jar:1.21.4-15-bb76819]
	at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:341) ~[paper-1.21.4.jar:1.21.4-15-bb76819]
	at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
[23:24:26] [Server thread/ERROR]: [ChestShop] Error while loading field SERVER_TAX_AMOUNT in configuration config.yml
java.lang.IllegalArgumentException: Can not set static int field com.Acrobot.ChestShop.Configuration.Properties.SERVER_TAX_AMOUNT to java.lang.Double
	at java.base/jdk.internal.reflect.FieldAccessorImpl.throwSetIllegalArgumentException(FieldAccessorImpl.java:228) ~[?:?]
	at java.base/jdk.internal.reflect.FieldAccessorImpl.throwSetIllegalArgumentException(FieldAccessorImpl.java:232) ~[?:?]
	at java.base/jdk.internal.reflect.MethodHandleIntegerFieldAccessorImpl.set(MethodHandleIntegerFieldAccessorImpl.java:127) ~[?:?]
	at java.base/java.lang.reflect.Field.set(Field.java:834) ~[?:?]
	at ChestShop.jar/com.Acrobot.Breeze.Configuration.Configuration.pairFileAndClass(Configuration.java:87) ~[ChestShop.jar:?]
	at ChestShop.jar/com.Acrobot.ChestShop.ChestShop.loadConfig(ChestShop.java:182) ~[ChestShop.jar:?]
	at ChestShop.jar/com.Acrobot.ChestShop.ChestShop.onEnable(ChestShop.java:142) ~[ChestShop.jar:?]
	at org.bukkit.plugin.java.JavaPlugin.setEnabled(JavaPlugin.java:288) ~[paper-api-1.21.4-R0.1-SNAPSHOT.jar:?]
	at io.papermc.paper.plugin.manager.PaperPluginInstanceManager.enablePlugin(PaperPluginInstanceManager.java:202) ~[paper-1.21.4.jar:1.21.4-15-bb76819]
	at io.papermc.paper.plugin.manager.PaperPluginManagerImpl.enablePlugin(PaperPluginManagerImpl.java:109) ~[paper-1.21.4.jar:1.21.4-15-bb76819]
	at org.bukkit.plugin.SimplePluginManager.enablePlugin(SimplePluginManager.java:520) ~[paper-api-1.21.4-R0.1-SNAPSHOT.jar:?]
	at org.bukkit.craftbukkit.CraftServer.enablePlugin(CraftServer.java:655) ~[paper-1.21.4.jar:1.21.4-15-bb76819]
	at org.bukkit.craftbukkit.CraftServer.enablePlugins(CraftServer.java:604) ~[paper-1.21.4.jar:1.21.4-15-bb76819]
	at net.minecraft.server.MinecraftServer.loadWorld0(MinecraftServer.java:769) ~[paper-1.21.4.jar:1.21.4-15-bb76819]
	at net.minecraft.server.MinecraftServer.loadLevel(MinecraftServer.java:531) ~[paper-1.21.4.jar:1.21.4-15-bb76819]
	at net.minecraft.server.dedicated.DedicatedServer.initServer(DedicatedServer.java:326) ~[paper-1.21.4.jar:1.21.4-15-bb76819]
	at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1236) ~[paper-1.21.4.jar:1.21.4-15-bb76819]
	at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:341) ~[paper-1.21.4.jar:1.21.4-15-bb76819]
	at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]
[23:24:26] [Server thread/INFO]: [ChestShop] Found locales zh_tw, zh, vi, uk, tr, sv, sr, ru, ro, pt_br, pl, no, nl, ko, ja, it, hu, he, fr, fi, es_mx, es, en, el, de, da, cs, ca, ar, af
[23:24:26] [Server thread/ERROR]: [ChestShop] No Economy adapter found! You need to install either Vault or Reserve!
[23:24:26] [Server thread/INFO]: [ChestShop] Disabling ChestShop v3.12.2 (build 353)
[23:24:26] [Server thread/INFO]: [Falling] Enabling Falling v1.18.1
[23:24:26] [Server thread/INFO]: [Falling] The FallingOverride plugin has been enabled!
[23:24:26] [Server thread/INFO]: [MusicBox] Enabling MusicBox v2.1.4
[23:24:26] [Server thread/INFO]: [InvisibleItemFrames] Enabling InvisibleItemFrames v2.16.2
[23:24:26] [Server thread/INFO]: [InvisibleItemFrames] Initializing managers...
[23:24:26] [Server thread/INFO]: [InvisibleItemFrames] MemoryDataManager initialized!
[23:24:26] [Server thread/INFO]: [InvisibleItemFrames] Using Paper Implementation!
[23:24:26] [Server thread/INFO]: [InvisibleItemFrames] ImplementationManager initialized!
[23:24:26] [Server thread/INFO]: [InvisibleItemFrames] BlockLockerManager initialized!
[23:24:26] [Server thread/INFO]: [InvisibleItemFrames] Registering commands...
[23:24:26] [Server thread/INFO]: [InvisibleItemFrames] Registering listeners...
[23:24:26] [Server thread/INFO]: [InvisibleItemFrames] Loading data...
[23:24:26] [Server thread/INFO]: [InvisibleItemFrames] Starting metrics...
[23:24:26] [Server thread/INFO]: [InvisibleItemFrames] Done and enabled in 14.96ms
[23:24:26] [Server thread/INFO]: [Images] Enabling Images v2.5.3
[23:24:26] [Server thread/INFO]: [Images] ProtocolLib detected. Enabling generic packet handling...
[23:24:26] [Server thread/INFO]: [BedHome] Enabling BedHome v2.35
[23:24:26] [Server thread/WARN]: [BedHome] /!\======================NOTICE======================/!\
[23:24:26] [Server thread/WARN]: [BedHome] Since the last version of the plugin, the locale has had vital items added to it.
[23:24:26] [Server thread/WARN]: [BedHome] Thanks to Bukkit's crappy encoding handling, we'll have to delete your locale to regenerate it.
[23:24:26] [Server thread/WARN]: [BedHome] But, we will back up your old file so you can migrate any changes.
[23:24:26] [Server thread/WARN]: [BedHome] The backup file is called "locale.yml.old"
[23:24:26] [Server thread/WARN]: [BedHome] /!\======================NOTICE======================/!\
[23:24:26] [Server thread/INFO]: [InvSee++] Enabling InvSeePlusPlus v0.29.11
[23:24:26] [Server thread/INFO]: [TAB] Enabling TAB v5.0.3
[23:24:26] [Server thread/INFO]: [TAB] Loaded NMS hook in 31ms
[23:24:26] [Server thread/INFO]: [TAB] Enabled in 139ms
[23:24:26] [Server thread/INFO]: [Chunky] Enabling Chunky v1.4.28
[23:24:27] [Server thread/INFO]: [GeyserUpdater] Enabling GeyserUpdater v1.6.4
[23:24:27] [Server thread/INFO]: [spark] Starting background profiler...
[23:24:27] [Server thread/INFO]: [PlaceholderAPI] Placeholder expansion registration initializing...
[23:24:27] [Server thread/INFO]: [Geyser-Spigot] ******************************************
[23:24:27] [Server thread/INFO]: [Geyser-Spigot] 
[23:24:27] [Server thread/INFO]: [Geyser-Spigot] Loading Geyser version 2.6.0-b734 (git-master-64c7adc)
[23:24:27] [Server thread/INFO]: [Geyser-Spigot] 
[23:24:27] [Server thread/INFO]: [Geyser-Spigot] ******************************************
[23:24:28] [epollEventLoopGroup-3-1/INFO]: [Geyser-Spigot] Started Geyser on UDP port 24691
[23:24:28] [Server thread/INFO]: [Geyser-Spigot] Done (1.762s)! Run /geyser help for help!
[23:24:29] [Server thread/INFO]: Done preparing level "world" (4.243s)
[23:24:29] [Server thread/INFO]: Running delayed init tasks
[23:24:29] [Craft Scheduler Thread - 2 - ViaVersion/INFO]: [ViaVersion] Finished mapping loading, shutting down loader executor.
[23:24:29] [Craft Scheduler Thread - 5 - GeyserUpdater/INFO]: [GeyserUpdater] You are using the latest version of GeyserUpdater!
[23:24:29] [Server thread/INFO]: [discord4j.core.DiscordClientBuilder] Discord4J 3.3.0-M2 (https://discord4j.com)
[23:24:29] [Server thread/INFO]: 0 placeholder hook(s) registered!
[23:24:29] [Server thread/INFO]: Done (15.308s)! For help, type "help"
[23:24:29] [Server thread/INFO]: [voicechat] Loading plugins
[23:24:29] [Server thread/INFO]: [voicechat] Loaded 0 plugin(s)
[23:24:29] [Server thread/INFO]: [voicechat] Initializing plugins
[23:24:29] [Server thread/INFO]: [voicechat] Initialized 0 plugin(s)
[23:24:30] [VoiceChatServerThread/INFO]: [voicechat] Using server-ip as bind address: 0.0.0.0
[23:24:30] [VoiceChatServerThread/INFO]: [voicechat] Voice chat server started at 0.0.0.0:23897
[23:24:30] [Craft Scheduler Thread - 0 - Images/INFO]: [Images] Loaded 0 images...
[23:24:31] [reactor-http-nio-3/INFO]: [discord4j.gateway.DefaultGatewayClient] [G:55e1f860, S:0] Connected to Gateway
[23:24:31] [reactor-http-nio-3/INFO]: [discord4j.core.shard.LocalShardCoordinator] [G:55e1f860, S:0] Shard connected
[23:24:37] [Server thread/INFO]: Discord Integration connected
[23:35:35] [User Authenticator #0/INFO]: UUID of player Bencraft4565657 is 0853c319-139e-4e4a-8831-b2adea971ae0
[23:35:36] [Server thread/INFO]: [+] Bencraft4565657 Ist Beigetreten!
[23:35:36] [Server thread/INFO]: Bencraft4565657[] logged in with entity id 32 at ([world]95.61755194364204, 79.0, -144.0992271183545)
[23:35:42] [Server thread/INFO]: Bencraft4565657 issued server command: /version

What other plugins are you running?

Screenshot 2024-12-17 003839

Agreements

Additional context

No response

@BenTheMan69 BenTheMan69 mentioned this issue Dec 16, 2024
2 tasks
@Phoenix616
Copy link
Member

You are not running the latest dev build... the template explicitly asks about that but you checked the checkbox that you are using it. Why?

@BenTheMan69
Copy link
Author

You are not running the latest dev build... the template explicitly asks about that but you checked the checkbox that you are using it. Why?

I thought i did. Should i open a new issue or just update this one for the dev build?

@Phoenix616
Copy link
Member

Well if this happens with the latest dev build too then just provide the log here, however I doubt it does as that particular bug from your log was fixed a while ago and seems unrelated to 1.21.4

@BenTheMan69
Copy link
Author

i have installed the newest prerelease version but i still get this error when typing /chestshop version.

Shown here is my Servers Log:

[14:12:51] [ServerMain/INFO]: [bootstrap] Running Java 21 (OpenJDK 64-Bit Server VM 21.0.4+7-LTS; Eclipse Adoptium Temurin-21.0.4+7) on Linux 6.1.0-25-amd64 (amd64)
[14:12:51] [ServerMain/INFO]: [bootstrap] Loading Paper 1.21.4-15-master@bb76819 (2024-12-15T09:48:21Z) for Minecraft 1.21.4
[14:12:51] [ServerMain/INFO]: [PluginInitializerManager] Initializing plugins...
[14:12:52] [ServerMain/INFO]: [PluginInitializerManager] Initialized 20 plugins
[14:12:52] [ServerMain/INFO]: [PluginInitializerManager] Bukkit plugins (20):

  • BedHome (2.35), ChestShop (3.12.3-SNAPSHOT (build 423)), Chunky (1.4.28), DiscordIntegration (3.5.2), Falling (1.18.1), Geyser-Spigot (2.6.0-SNAPSHOT), GeyserUpdater (1.6.4), Images (2.5.3), InvSeePlusPlus (0.29.11), InvisibleItemFrames (2.16.2), Join-Leave (2.4.3), LuckPerms (5.4.150), MusicBox (2.1.4), NoteBlockAPI (1.6.3), PlaceholderAPI (2.11.6), ProtocolLib (5.4.0-SNAPSHOT-738), TAB (5.0.3), ViaVersion (5.2.0), floodgate (2.2.3-SNAPSHOT (b114-83fbd6e)), voicechat (2.5.26)
    [14:12:54] [ServerMain/INFO]: Environment: Environment[sessionHost=https://sessionserver.mojang.com, servicesHost=https://api.minecraftservices.com, name=PROD]
    [14:12:55] [ServerMain/INFO]: Loaded 1370 recipes
    [14:12:55] [ServerMain/INFO]: Loaded 1481 advancements
    [14:12:55] [ServerMain/INFO]: [MCTypeRegistry] Initialising converters for DataConverter...
    [14:12:55] [ServerMain/INFO]: [MCTypeRegistry] Finished initialising converters for DataConverter in 140.7ms
    [14:12:55] [Server thread/INFO]: Starting minecraft server version 1.21.4
    [14:12:55] [Server thread/INFO]: Loading properties
    [14:12:55] [Server thread/INFO]: This server is running Paper version 1.21.4-15-master@bb76819 (2024-12-15T09:48:21Z) (Implementing API version 1.21.4-R0.1-SNAPSHOT)
    [14:12:55] [Server thread/INFO]: [spark] This server bundles the spark profiler. For more information please visit https://docs.papermc.io/paper/profiling
    [14:12:55] [Server thread/INFO]: Server Ping Player Sample Count: 12
    [14:12:55] [Server thread/INFO]: Using 4 threads for Netty based IO
    [14:12:56] [Server thread/INFO]: [MoonriseCommon] Paper is using 1 worker threads, 1 I/O threads
    [14:12:56] [Server thread/INFO]: [ChunkTaskScheduler] Chunk system is using population gen parallelism: true
    [14:12:56] [Server thread/INFO]: Default game type: SURVIVAL
    [14:12:56] [Server thread/INFO]: Generating keypair
    [14:12:56] [Server thread/INFO]: Starting Minecraft server on 0.0.0.0:24691
    [14:12:56] [Server thread/INFO]: Using epoll channel type
    [14:12:56] [Server thread/INFO]: Paper: Using libdeflate (Linux x86_64) compression from Velocity.
    [14:12:56] [Server thread/INFO]: Paper: Using OpenSSL 3.x.x (Linux x86_64) cipher from Velocity.
    [14:12:57] [Server thread/INFO]: [ViaVersion] Loading server plugin ViaVersion v5.2.0
    [14:12:57] [Server thread/INFO]: [ViaVersion] ViaVersion 5.2.0 is now loaded. Registering protocol transformers and injecting...
    [14:12:57] [Via-Mappingloader-0/INFO]: [ViaVersion] Loading block connection mappings ...
    [14:12:57] [Via-Mappingloader-0/INFO]: [ViaVersion] Using FastUtil Long2ObjectOpenHashMap for block connections
    [14:12:57] [Server thread/INFO]: [floodgate] Loading server plugin floodgate v2.2.3-SNAPSHOT (b114-83fbd6e)
    [14:12:58] [Server thread/INFO]: [floodgate] Took 364ms to boot Floodgate
    [14:12:58] [Server thread/INFO]: [PlaceholderAPI] Loading server plugin PlaceholderAPI v2.11.6
    [14:12:58] [Server thread/INFO]: [NoteBlockAPI] Loading server plugin NoteBlockAPI v1.6.3
    [14:12:58] [Server thread/INFO]: [ProtocolLib] Loading server plugin ProtocolLib v5.4.0-SNAPSHOT-738
    [14:12:58] [Server thread/WARN]: [ProtocolLib] Version (MC: 1.21.4) has not yet been tested! Proceed with caution.
    [14:12:58] [Server thread/INFO]: [LuckPerms] Loading server plugin LuckPerms v5.4.150
    [14:12:58] [Server thread/INFO]: [Geyser-Spigot] Loading server plugin Geyser-Spigot v2.6.0-SNAPSHOT
    [14:12:58] [Server thread/INFO]: [Geyser-Spigot] Loading extensions...
    [14:12:58] [Server thread/INFO]: [Geyser-Spigot] Loaded 0 extension(s)
    [14:12:58] [Server thread/INFO]: [Join-Leave] Loading server plugin Join-Leave v2.4.3
    [14:12:58] [Server thread/INFO]: Join-Leave Essentials is not installed. Essentials functions Disabled.
    [14:12:58] [Server thread/INFO]: [voicechat] Loading server plugin voicechat v2.5.26
    [14:12:58] [Server thread/INFO]: [ChestShop] Loading server plugin ChestShop v3.12.3-SNAPSHOT (build 423)
    [14:12:58] [Server thread/INFO]: [Falling] Loading server plugin Falling v1.18.1
    [14:12:58] [Server thread/INFO]: [MusicBox] Loading server plugin MusicBox v2.1.4
    [14:12:58] [Server thread/INFO]: [InvisibleItemFrames] Loading server plugin InvisibleItemFrames v2.16.2
    [14:12:58] [Server thread/INFO]: [Images] Loading server plugin Images v2.5.3
    [14:12:58] [Server thread/INFO]: [BedHome] Loading server plugin BedHome v2.35
    [14:12:58] [Server thread/INFO]: [Discord Integration 3.5.2] Loading server plugin DiscordIntegration v3.5.2
    [14:12:58] [Server thread/INFO]: [InvSee++] Loading server plugin InvSeePlusPlus v0.29.11
    [14:12:58] [Server thread/INFO]: [TAB] Loading server plugin TAB v5.0.3
    [14:12:58] [Server thread/INFO]: [Chunky] Loading server plugin Chunky v1.4.28
    [14:12:58] [Server thread/INFO]: [GeyserUpdater] Loading server plugin GeyserUpdater v1.6.4
    [14:12:58] [Server thread/INFO]: Server permissions file permissions.yml is empty, ignoring it
    [14:12:58] [Server thread/INFO]: [ProtocolLib] Enabling ProtocolLib v5.4.0-SNAPSHOT-738
    [14:12:58] [Server thread/INFO]: [LuckPerms] Enabling LuckPerms v5.4.150
    [14:12:59] [Server thread/INFO]: __
    [14:12:59] [Server thread/INFO]: | |) LuckPerms v5.4.150
    [14:12:59] [Server thread/INFO]: |
    _ | Running on Bukkit - Paper
    [14:12:59] [Server thread/INFO]:
    [14:12:59] [Server thread/INFO]: [LuckPerms] Loading configuration...
    [14:12:59] [Server thread/INFO]: [LuckPerms] Loading storage provider... [H2]
    [14:12:59] [Server thread/INFO]: [LuckPerms] Loading internal permission managers...
    [14:12:59] [Server thread/INFO]: [LuckPerms] Performing initial data load...
    [14:12:59] [Server thread/INFO]: [LuckPerms] Successfully enabled. (took 807ms)
    [14:12:59] [Server thread/INFO]: [Discord Integration 3.5.2] Enabling DiscordIntegration v3.5.2
    [14:12:59] [Server thread/INFO]: [Discord Integration 3.5.2] [ACF] Enabled Asynchronous Tab Completion Support!
    [14:12:59] [Server thread/INFO]: [Discord Integration 3.5.2] Luck Perms integration enabled
    [14:12:59] [Server thread/INFO]: Preparing level "world"
    [14:13:00] [Server thread/INFO]: Preparing start region for dimension minecraft:overworld
    [14:13:00] [Server thread/INFO]: Preparing spawn area: 0%
    [14:13:00] [Server thread/INFO]: Preparing spawn area: 4%
    [14:13:00] [Server thread/INFO]: Time elapsed: 514 ms
    [14:13:00] [Server thread/INFO]: [ViaVersion] Enabling ViaVersion v5.2.0
    [14:13:00] [Server thread/INFO]: [ViaVersion] ViaVersion detected server version: 1.21.4 (769)
    [14:13:00] [Server thread/WARN]: [ViaVersion] ViaVersion does not have any compatible versions for this server version!
    [14:13:00] [Server thread/WARN]: [ViaVersion] Please remember that ViaVersion only adds support for versions newer than the server version.
    [14:13:00] [Server thread/WARN]: [ViaVersion] If you need support for older versions you may need to use one or more ViaVersion addons too.
    [14:13:00] [Server thread/WARN]: [ViaVersion] In that case please read the ViaVersion resource page carefully or use https://viaversion.com/setup
    [14:13:00] [Server thread/WARN]: [ViaVersion] and if you're still unsure, feel free to join our Discord-Server for further assistance.
    [14:13:00] [Server thread/INFO]: [floodgate] Enabling floodgate v2.2.3-SNAPSHOT (b114-83fbd6e)
    [14:13:00] [Server thread/INFO]: [PlaceholderAPI] Enabling PlaceholderAPI v2.11.6
    [14:13:00] [Server thread/INFO]: [PlaceholderAPI] Fetching available expansion information...
    [14:13:00] [Server thread/INFO]: [NoteBlockAPI] Enabling NoteBlockAPI v1.6.3
    [14:13:00] [Server thread/INFO]: [Geyser-Spigot] Enabling Geyser-Spigot v2.6.0-SNAPSHOT
    [14:13:01] [Server thread/INFO]: [Join-Leave] Enabling Join-Leave v2.4.3
    [14:13:01] [Server thread/INFO]: Join-Leave Loading plugin assets...
    [14:13:01] [Server thread/INFO]: Join-Leave Checking if datafolder exist...
    [14:13:01] [Server thread/INFO]: Join-Leave Datafolder exist!
    [14:13:01] [Server thread/INFO]: Join-Leave Checking if config exist...
    [14:13:01] [Server thread/INFO]: Join-Leave Config exist!
    [14:13:01] [Server thread/INFO]: Join-Leave Checking if language config exist...
    [14:13:01] [Server thread/INFO]: Join-Leave Language config exist!
    [14:13:01] [Server thread/INFO]: Join-Leave Checking if title config exist...
    [14:13:01] [Server thread/INFO]: Join-Leave Title config exist!
    [14:13:01] [Server thread/INFO]: Join-Leave Checking if sound config exist...
    [14:13:01] [Server thread/INFO]: Join-Leave Sound config exist!
    [14:13:01] [Server thread/INFO]: Join-Leave Checking if fireworks config exist...
    [14:13:01] [Server thread/INFO]: Join-Leave Fireworks config exist!
    [14:13:01] [Server thread/INFO]: Join-Leave Plugin assets loaded!
    [14:13:01] [Server thread/INFO]: [Join-Leave] Enabled metrics. You may opt-out by changing plugins/bStats/config.yml
    [14:13:01] [Server thread/INFO]: [voicechat] Enabling voicechat v2.5.26
    [14:13:01] [Server thread/INFO]: [voicechat] Initializing compatibility for Bukkit version 1.21.4-R0.1
    [14:13:01] [Server thread/INFO]: [voicechat] Compatibility version 18
    [14:13:01] [Server thread/INFO]: [voicechat] Successfully initialized commodore command completion
    [14:13:01] [Server thread/INFO]: [PlaceholderAPI] Successfully registered internal expansion: voicechat [2.5.26]
    [14:13:01] [Server thread/INFO]: [voicechat] Successfully registered PlaceholderAPI expansion
    [14:13:01] [Server thread/INFO]: [voicechat] Successfully added ViaVersion mappings
    [14:13:01] [Server thread/INFO]: [ChestShop] Enabling ChestShop v3.12.3-SNAPSHOT (build 423)
    [14:13:01] [Server thread/INFO]: [ChestShop] Found locales hu, es_mx, sv, en, ro, zh_tw, fi, tr, af, ca, da, it, ru, nl, cs, vi, pt_br, he, zh, es, ko, no, fr, el, ja, uk, de, pl, ar, sr
    [14:13:01] [Server thread/ERROR]: [ChestShop] No Economy adapter found! You need to install either Vault or Reserve!
    [14:13:01] [Server thread/INFO]: [ChestShop] Disabling ChestShop v3.12.3-SNAPSHOT (build 423)
    [14:13:01] [Server thread/INFO]: [Falling] Enabling Falling v1.18.1
    [14:13:01] [Server thread/INFO]: [Falling] The FallingOverride plugin has been enabled!
    [14:13:01] [Server thread/INFO]: [MusicBox] Enabling MusicBox v2.1.4
    [14:13:01] [Server thread/INFO]: [InvisibleItemFrames] Enabling InvisibleItemFrames v2.16.2
    [14:13:01] [Server thread/INFO]: [InvisibleItemFrames] Initializing managers...
    [14:13:01] [Server thread/INFO]: [InvisibleItemFrames] MemoryDataManager initialized!
    [14:13:01] [Server thread/INFO]: [InvisibleItemFrames] Using Paper Implementation!
    [14:13:01] [Server thread/INFO]: [InvisibleItemFrames] ImplementationManager initialized!
    [14:13:01] [Server thread/INFO]: [InvisibleItemFrames] BlockLockerManager initialized!
    [14:13:01] [Server thread/INFO]: [InvisibleItemFrames] Registering commands...
    [14:13:01] [Server thread/INFO]: [InvisibleItemFrames] Registering listeners...
    [14:13:01] [Server thread/INFO]: [InvisibleItemFrames] Loading data...
    [14:13:01] [Server thread/INFO]: [InvisibleItemFrames] Starting metrics...
    [14:13:01] [Server thread/INFO]: [InvisibleItemFrames] Done and enabled in 22.35ms
    [14:13:01] [Server thread/INFO]: [Images] Enabling Images v2.5.3
    [14:13:01] [Server thread/INFO]: [Images] ProtocolLib detected. Enabling generic packet handling...
    [14:13:01] [Server thread/INFO]: [BedHome] Enabling BedHome v2.35
    [14:13:01] [Server thread/WARN]: [BedHome] /!======================NOTICE======================/!
    [14:13:01] [Server thread/WARN]: [BedHome] Since the last version of the plugin, the locale has had vital items added to it.
    [14:13:01] [Server thread/WARN]: [BedHome] Thanks to Bukkit's crappy encoding handling, we'll have to delete your locale to regenerate it.
    [14:13:01] [Server thread/WARN]: [BedHome] But, we will back up your old file so you can migrate any changes.
    [14:13:01] [Server thread/WARN]: [BedHome] The backup file is called "locale.yml.old"
    [14:13:01] [Server thread/WARN]: [BedHome] /!======================NOTICE======================/!
    [14:13:01] [Server thread/INFO]: [InvSee++] Enabling InvSeePlusPlus v0.29.11
    [14:13:01] [Server thread/INFO]: [TAB] Enabling TAB v5.0.3
    [14:13:01] [Server thread/INFO]: [TAB] Loaded NMS hook in 27ms
    [14:13:02] [Server thread/INFO]: [TAB] Enabled in 108ms
    [14:13:02] [Server thread/INFO]: [Chunky] Enabling Chunky v1.4.28
    [14:13:02] [Server thread/INFO]: [GeyserUpdater] Enabling GeyserUpdater v1.6.4
    [14:13:02] [Server thread/INFO]: [spark] Starting background profiler...
    [14:13:02] [Server thread/INFO]: [PlaceholderAPI] Placeholder expansion registration initializing...
    [14:13:02] [Server thread/INFO]: 0 placeholder hook(s) registered!
    [14:13:02] [Server thread/INFO]: [Geyser-Spigot] ******************************************
    [14:13:02] [Server thread/INFO]: [Geyser-Spigot]
    [14:13:02] [Server thread/INFO]: [Geyser-Spigot] Loading Geyser version 2.6.0-b734 (git-master-64c7adc)
    [14:13:02] [Server thread/INFO]: [Geyser-Spigot]
    [14:13:02] [Server thread/INFO]: [Geyser-Spigot] ******************************************
    [14:13:04] [Server thread/INFO]: [Geyser-Spigot] Started Geyser on UDP port 24691
    [14:13:04] [Server thread/INFO]: [Geyser-Spigot] Done (1.793s)! Run /geyser help for help!
    [14:13:04] [Server thread/INFO]: Done preparing level "world" (4.380s)
    [14:13:04] [Server thread/INFO]: Running delayed init tasks
    [14:13:04] [Craft Scheduler Thread - 2 - ViaVersion/INFO]: [ViaVersion] Finished mapping loading, shutting down loader executor.
    [14:13:04] [Craft Scheduler Thread - 5 - GeyserUpdater/INFO]: [GeyserUpdater] You are using the latest version of GeyserUpdater!
    [14:13:04] [Server thread/INFO]: [discord4j.core.DiscordClientBuilder] Discord4J 3.3.0-M2 (https://discord4j.com)
    [14:13:04] [Server thread/INFO]: Done (13.731s)! For help, type "help"
    [14:13:04] [Server thread/INFO]: [voicechat] Loading plugins
    [14:13:04] [Server thread/INFO]: [voicechat] Loaded 0 plugin(s)
    [14:13:04] [Server thread/INFO]: [voicechat] Initializing plugins
    [14:13:04] [Server thread/INFO]: [voicechat] Initialized 0 plugin(s)
    [14:13:04] [VoiceChatServerThread/INFO]: [voicechat] Using server-ip as bind address: 0.0.0.0
    [14:13:04] [VoiceChatServerThread/INFO]: [voicechat] Voice chat server started at 0.0.0.0:23897
    [14:13:06] [Craft Scheduler Thread - 0 - Images/INFO]: [Images] Loaded 0 images...
    [14:13:06] [reactor-http-nio-3/INFO]: [discord4j.gateway.DefaultGatewayClient] [G:7ea05198, S:0] Connected to Gateway
    [14:13:06] [reactor-http-nio-3/INFO]: [discord4j.core.shard.LocalShardCoordinator] [G:7ea05198, S:0] Shard connected
    [14:13:12] [Server thread/INFO]: Discord Integration connected
    [14:15:01] [User Authenticator #0/INFO]: UUID of player Bencraft4565657 is 0853c319-139e-4e4a-8831-b2adea971ae0
    [14:15:02] [Server thread/INFO]: [+] Bencraft4565657 Ist Beigetreten!
    [14:15:02] [Server thread/INFO]: Bencraft4565657[] logged in with entity id 23 at ([world]86.07258600244786, 81.0, -122.2710679701097)
    [14:15:10] [Server thread/INFO]: Bencraft4565657 issued server command: /chestshop version
    [14:15:10] [Server thread/ERROR]: Command exception: /chestshop version
    org.bukkit.command.CommandException: Cannot execute command 'chestshop' in plugin ChestShop v3.12.3-SNAPSHOT (build 423) - plugin is disabled.
    at org.bukkit.command.PluginCommand.execute(PluginCommand.java:37) ~[paper-api-1.21.4-R0.1-SNAPSHOT.jar:?]
    at io.papermc.paper.command.brigadier.bukkit.BukkitCommandNode$BukkitBrigCommand.run(BukkitCommandNode.java:82) ~[paper-1.21.4.jar:1.21.4-15-bb76819]
    at com.mojang.brigadier.context.ContextChain.runExecutable(ContextChain.java:73) ~[brigadier-1.3.10.jar:?]
    at net.minecraft.commands.execution.tasks.ExecuteCommand.execute(ExecuteCommand.java:31) ~[paper-1.21.4.jar:1.21.4-15-bb76819]
    at net.minecraft.commands.execution.tasks.ExecuteCommand.execute(ExecuteCommand.java:19) ~[paper-1.21.4.jar:1.21.4-15-bb76819]
    at net.minecraft.commands.execution.UnboundEntryAction.lambda$bind$0(UnboundEntryAction.java:8) ~[paper-1.21.4.jar:1.21.4-15-bb76819]
    at net.minecraft.commands.execution.CommandQueueEntry.execute(CommandQueueEntry.java:5) ~[paper-1.21.4.jar:1.21.4-15-bb76819]
    at net.minecraft.commands.execution.ExecutionContext.runCommandQueue(ExecutionContext.java:103) ~[paper-1.21.4.jar:1.21.4-15-bb76819]
    at net.minecraft.commands.Commands.executeCommandInContext(Commands.java:448) ~[paper-1.21.4.jar:1.21.4-15-bb76819]
    at net.minecraft.commands.Commands.performCommand(Commands.java:355) ~[paper-1.21.4.jar:1.21.4-15-bb76819]
    at net.minecraft.commands.Commands.performCommand(Commands.java:342) ~[paper-1.21.4.jar:1.21.4-15-bb76819]
    at net.minecraft.commands.Commands.performCommand(Commands.java:337) ~[paper-1.21.4.jar:1.21.4-15-bb76819]
    at net.minecraft.server.network.ServerGamePacketListenerImpl.performUnsignedChatCommand(ServerGamePacketListenerImpl.java:2301) ~[paper-1.21.4.jar:1.21.4-15-bb76819]
    at net.minecraft.server.network.ServerGamePacketListenerImpl.lambda$handleChatCommand$11(ServerGamePacketListenerImpl.java:2275) ~[paper-1.21.4.jar:1.21.4-15-bb76819]
    at net.minecraft.server.TickTask.run(TickTask.java:18) ~[paper-1.21.4.jar:1.21.4-15-bb76819]
    at net.minecraft.util.thread.BlockableEventLoop.doRunTask(BlockableEventLoop.java:154) ~[paper-1.21.4.jar:1.21.4-15-bb76819]
    at net.minecraft.util.thread.ReentrantBlockableEventLoop.doRunTask(ReentrantBlockableEventLoop.java:24) ~[paper-1.21.4.jar:1.21.4-15-bb76819]
    at net.minecraft.server.MinecraftServer.doRunTask(MinecraftServer.java:1579) ~[paper-1.21.4.jar:1.21.4-15-bb76819]
    at net.minecraft.server.MinecraftServer.doRunTask(MinecraftServer.java:207) ~[paper-1.21.4.jar:1.21.4-15-bb76819]
    at net.minecraft.util.thread.BlockableEventLoop.pollTask(BlockableEventLoop.java:128) ~[paper-1.21.4.jar:1.21.4-15-bb76819]
    at net.minecraft.server.MinecraftServer.pollTaskInternal(MinecraftServer.java:1556) ~[paper-1.21.4.jar:1.21.4-15-bb76819]
    at net.minecraft.server.MinecraftServer.pollTask(MinecraftServer.java:1549) ~[paper-1.21.4.jar:1.21.4-15-bb76819]
    at net.minecraft.util.thread.BlockableEventLoop.managedBlock(BlockableEventLoop.java:138) ~[paper-1.21.4.jar:1.21.4-15-bb76819]
    at net.minecraft.server.MinecraftServer.managedBlock(MinecraftServer.java:1500) ~[paper-1.21.4.jar:1.21.4-15-bb76819]
    at net.minecraft.server.MinecraftServer.waitUntilNextTick(MinecraftServer.java:1510) ~[paper-1.21.4.jar:1.21.4-15-bb76819]
    at net.minecraft.server.MinecraftServer.runServer(MinecraftServer.java:1346) ~[paper-1.21.4.jar:1.21.4-15-bb76819]
    at net.minecraft.server.MinecraftServer.lambda$spin$0(MinecraftServer.java:341) ~[paper-1.21.4.jar:1.21.4-15-bb76819]
    at java.base/java.lang.Thread.run(Thread.java:1583) ~[?:?]

@Phoenix616
Copy link
Member

Well that is now a completely different error. Also the reason is right in your log:

[ChestShop] No Economy adapter found! You need to install either Vault or Reserve!

You need to install either the Vault or the Reserve Economy abstraction API plugin and a compatible Economy plugin.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants