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

Iteminfo/Sign Clicking difference #493

Open
4 tasks done
DannyDelusion opened this issue Dec 7, 2021 · 4 comments
Open
4 tasks done

Iteminfo/Sign Clicking difference #493

DannyDelusion opened this issue Dec 7, 2021 · 4 comments
Labels
confirmed bug server issue Issues caused by the used server (Spigot/Paper/etc.)

Comments

@DannyDelusion
Copy link

DannyDelusion commented Dec 7, 2021

What is happening?

Create Admin Shop
have "?" as itemID (or Manually enter ID from /iteminfo)
Click Sign to propogate ItemID
Item ID incorrect (Or if manually entered, will change ID number)

ID Number for item is Spawner#6 (Glow Squid)
ID Number that Appears on sign, regardless if manual entry or clicking with item, becomes Spawner#7
image

What did you expect to happen?

Correct ItemID displayed
Item Bought correlates to Item IDd

Plugin Version

ChestShop version 3.12 (Build 307)
ChestShop version 3.12.1-SNAPSHOT (build 334)

Plugin Config

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 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 leak sensitive data but help 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

# 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: false
# 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, 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: true
# 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
# Percent of the price that should go to the server's account when buying from an Admin Shop.
SERVER_TAX_AMOUNT: 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 *, 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 messages to show up in console?
LOG_TO_CONSOLE: true
# Should all shop removals be logged to the console?
LOG_ALL_SHOP_REMOVALS: true

# Do you want to stack all items up to 64 item stacks?
STACK_TO_64: true
# 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: true
# 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

This server is running Paper version git-Paper-20 (MC: 1.18) (Implementing API version 1.18-R0.1-SNAPSHOT) (Git: 0cd411e) You are 37 version(s) behind Download the new version at: https://papermc.io/downloads Previous version: git-Paper-10 (MC: 1.18)

Server Log

Log
[04:11:16] [ServerMain/INFO]: Environment: authHost='https://authserver.mojang.com', accountsHost='https://api.mojang.com', sessionHost='https://sessionserver.mojang.com', servicesHost='https://api.minecraftservices.com', name='PROD'
[04:11:16] [ServerMain/INFO]: Reloading ResourceManager: Default, bukkit, Multiplayer sleep v2.0 r2, armored elytra v1.0.5, classic fishing loot v1.1.2, double shulker shells v1.3.2
[04:11:17] [Worker-Main-1/INFO]: Loaded 7 recipes
[04:11:17] [Worker-Main-1/WARN]: Found validation problem in {minecraft:entities/shulker}.pools[1].entries[0]: Unknown loot table called minecraft:entities/reference/mmh/shulker
[04:11:18] [Server thread/INFO]: Starting minecraft server version 1.18
[04:11:18] [Server thread/INFO]: Loading properties
[04:11:18] [Server thread/INFO]: This server is running Paper version git-Paper-20 (MC: 1.18) (Implementing API version 1.18-R0.1-SNAPSHOT) (Git: 0cd411e)
[04:11:18] [Server thread/INFO]: Server Ping Player Sample Count: 12
[04:11:18] [Server thread/INFO]: Using 4 threads for Netty based IO
[04:11:18] [Server thread/INFO]: Default game type: SURVIVAL
[04:11:18] [Server thread/INFO]: Generating keypair
[04:11:18] [Server thread/INFO]: Starting Minecraft server on 0.0.0.0:25565
[04:11:18] [Server thread/INFO]: Using epoll channel type
[04:11:18] [Server thread/INFO]: Paper: Using libdeflate (Linux x86_64) compression from Velocity.
[04:11:18] [Server thread/INFO]: Paper: Using OpenSSL 1.1.x (Linux x86_64) cipher from Velocity.
[04:11:19] [Server thread/ERROR]: [STDERR] [org.bukkit.craftbukkit.v1_18_R1.legacy.CraftLegacy] Initializing Legacy Material Support. Unless you have legacy plugins and/or data this is a bug!
[04:11:24] [Server thread/WARN]: Legacy plugin NoMobGrief v1.0.0 does not specify an api-version.
[04:11:24] [Server thread/WARN]: Legacy plugin PlayTime v3.3 does not specify an api-version.
[04:11:24] [Server thread/INFO]: [LuckPerms] Loading LuckPerms v5.3.74
[04:11:24] [Server thread/INFO]: [LastLog] Loading LastLog v1.2.0
[04:11:24] [Server thread/INFO]: [PlaceholderAPI] Loading PlaceholderAPI v2.10.10
[04:11:24] [Server thread/INFO]: [RHLeafDecay] Loading RHLeafDecay v1.18_R1
[04:11:24] [Server thread/INFO]: [NoMobGrief] Loading NoMobGrief v1.0.0
[04:11:24] [Server thread/INFO]: [PlayTime] Loading PlayTime v3.3
[04:11:24] [Server thread/INFO]: [Vault] Loading Vault v1.7.3-b131
[04:11:24] [Server thread/INFO]: [WorldEdit] Loading WorldEdit v7.2.8-SNAPSHOT+5996-7b4e2c2
[04:11:25] [Server thread/INFO]: Got request to register class com.sk89q.worldedit.bukkit.BukkitServerInterface with WorldEdit [com.sk89q.worldedit.extension.platform.PlatformManager@39b98880]
[04:11:25] [Server thread/INFO]: [Essentials] Loading Essentials v2.19.1-dev+48-c45c741
[04:11:25] [Server thread/INFO]: [EssentialsProtect] Loading EssentialsProtect v2.19.1-dev+48-c45c741
[04:11:25] [Server thread/INFO]: [TAB] Loading TAB v3.0.0
[04:11:25] [Server thread/INFO]: [WorldGuard] Loading WorldGuard v7.0.6+1cff55f
[04:11:25] [Server thread/INFO]: [CoreProtect] Loading CoreProtect v20.1
[04:11:25] [Server thread/INFO]: [WorldGuardExtraFlags] Loading WorldGuardExtraFlags v4.1.5-SNAPSHOT
[04:11:25] [Server thread/INFO]: [AdvancedRegionMarket] Loading AdvancedRegionMarket v3.3.5
[04:11:25] [Server thread/INFO]: [GriefPrevention] Loading GriefPrevention v16.17.1-2b69191
[04:11:25] [Server thread/INFO]: [ChestShop] Loading ChestShop v3.12 (build 307)
[04:11:25] [Server thread/INFO]: [ChestShop] WorldGuard version 7.0.6+1cff55f loaded.
[04:11:25] [Server thread/INFO]: [ChestShop] GriefPrevention version 16.17.1-2b69191 loaded.
[04:11:25] [Server thread/INFO]: Server permissions file permissions.yml is empty, ignoring it
[04:11:25] [Server thread/INFO]: [LuckPerms] Enabling LuckPerms v5.3.74
[04:11:25] [Server thread/INFO]:         __    
[04:11:25] [Server thread/INFO]:   |    |__)   LuckPerms v5.3.74
[04:11:25] [Server thread/INFO]:   |___ |      Running on Bukkit - Paper
[04:11:25] [Server thread/INFO]: 
[04:11:25] [Server thread/INFO]: [LuckPerms] Loading configuration...
[04:11:25] [Server thread/INFO]: [LuckPerms] Loading storage provider... [H2]
[04:11:26] [Server thread/INFO]: [LuckPerms] Loading internal permission managers...
[04:11:26] [Server thread/INFO]: [LuckPerms] Performing initial data load...
[04:11:26] [Server thread/INFO]: [LuckPerms] Successfully enabled. (took 1191ms)
[04:11:26] [Server thread/INFO]: [Vault] Enabling Vault v1.7.3-b131
[04:11:26] [Server thread/WARN]: [Vault] Loaded class com.earth2me.essentials.api.Economy from Essentials v2.19.1-dev+48-c45c741 which is not a depend, softdepend or loadbefore of this plugin.
[04:11:26] [Server thread/INFO]: [Vault] [Economy] Essentials Economy found: Waiting
[04:11:26] [Server thread/INFO]: [Vault] [Permission] SuperPermissions loaded as backup permission system.
[04:11:26] [Server thread/INFO]: [Vault] Enabled Version 1.7.3-b131
[04:11:26] [Server thread/INFO]: [LuckPerms] Registered Vault permission & chat hook.
[04:11:26] [Server thread/INFO]: [WorldEdit] Enabling WorldEdit v7.2.8-SNAPSHOT+5996-7b4e2c2
[04:11:26] [Server thread/INFO]: Registering commands with com.sk89q.worldedit.bukkit.BukkitServerInterface
[04:11:26] [Server thread/INFO]: WEPIF: Vault detected! Using Vault for permissions
[04:11:26] [Server thread/INFO]: Using com.sk89q.worldedit.bukkit.adapter.impl.v1_18_R1.PaperweightAdapter as the Bukkit adapter
[04:11:27] [Server thread/INFO]: Preparing level "world"
[04:11:27] [Server thread/INFO]: -------- World Settings For [world] --------
[04:11:27] [Server thread/INFO]: Cactus Growth Modifier: 100%
[04:11:27] [Server thread/INFO]: Cane Growth Modifier: 100%
[04:11:27] [Server thread/INFO]: Melon Growth Modifier: 100%
[04:11:27] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[04:11:27] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[04:11:27] [Server thread/INFO]: Sapling Growth Modifier: 100%
[04:11:27] [Server thread/INFO]: Beetroot Growth Modifier: 100%
[04:11:27] [Server thread/INFO]: Carrot Growth Modifier: 100%
[04:11:27] [Server thread/INFO]: Potato Growth Modifier: 100%
[04:11:27] [Server thread/INFO]: Wheat Growth Modifier: 100%
[04:11:27] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[04:11:27] [Server thread/INFO]: Vine Growth Modifier: 100%
[04:11:27] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[04:11:27] [Server thread/INFO]: Bamboo Growth Modifier: 100%
[04:11:27] [Server thread/INFO]: SweetBerry Growth Modifier: 100%
[04:11:27] [Server thread/INFO]: Kelp Growth Modifier: 100%
[04:11:27] [Server thread/INFO]: Entity Activation Range: An 32 / Mo 32 / Ra 48 / Mi 16 / Tiv true
[04:11:27] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Other 64
[04:11:27] [Server thread/INFO]: Hopper Transfer: 8 Hopper Check: 1 Hopper Amount: 1
[04:11:27] [Server thread/INFO]: Custom Map Seeds:  Village: 10387312 Desert: 14357617 Igloo: 14357618 Jungle: 14357619 Swamp: 14357620 Monument: 10387313 Ocean: 14357621 Shipwreck: 165745295 End City: 10387313 Slime: 987234911 Bastion: 30084232 Fortress: 30084232 Mansion: 10387319 Fossil: 14357921 Portal: 34222645
[04:11:27] [Server thread/INFO]: Max TNT Explosions: 100
[04:11:27] [Server thread/INFO]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[04:11:27] [Server thread/INFO]: Experience Merge Radius: 3.0
[04:11:27] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: false
[04:11:27] [Server thread/INFO]: Item Merge Radius: 2.5
[04:11:27] [Server thread/INFO]: Item Despawn Rate: 6000
[04:11:27] [Server thread/INFO]: View Distance: 8
[04:11:27] [Server thread/INFO]: Simulation Distance: 10
[04:11:27] [Server thread/INFO]: Arrow Despawn Rate: 1200 Trident Respawn Rate:1200
[04:11:27] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[04:11:27] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[04:11:27] [Server thread/INFO]: Mob Spawn Range: 6
[04:11:28] [Server thread/INFO]: -------- World Settings For [world_nether] --------
[04:11:28] [Server thread/INFO]: Cactus Growth Modifier: 100%
[04:11:28] [Server thread/INFO]: Cane Growth Modifier: 100%
[04:11:28] [Server thread/INFO]: Melon Growth Modifier: 100%
[04:11:28] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[04:11:28] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[04:11:28] [Server thread/INFO]: Sapling Growth Modifier: 100%
[04:11:28] [Server thread/INFO]: Beetroot Growth Modifier: 100%
[04:11:28] [Server thread/INFO]: Carrot Growth Modifier: 100%
[04:11:28] [Server thread/INFO]: Potato Growth Modifier: 100%
[04:11:28] [Server thread/INFO]: Wheat Growth Modifier: 100%
[04:11:28] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[04:11:28] [Server thread/INFO]: Vine Growth Modifier: 100%
[04:11:28] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[04:11:28] [Server thread/INFO]: Bamboo Growth Modifier: 100%
[04:11:28] [Server thread/INFO]: SweetBerry Growth Modifier: 100%
[04:11:28] [Server thread/INFO]: Kelp Growth Modifier: 100%
[04:11:28] [Server thread/INFO]: Entity Activation Range: An 32 / Mo 32 / Ra 48 / Mi 16 / Tiv true
[04:11:28] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Other 64
[04:11:28] [Server thread/INFO]: Hopper Transfer: 8 Hopper Check: 1 Hopper Amount: 1
[04:11:28] [Server thread/INFO]: Custom Map Seeds:  Village: 10387312 Desert: 14357617 Igloo: 14357618 Jungle: 14357619 Swamp: 14357620 Monument: 10387313 Ocean: 14357621 Shipwreck: 165745295 End City: 10387313 Slime: 987234911 Bastion: 30084232 Fortress: 30084232 Mansion: 10387319 Fossil: 14357921 Portal: 34222645
[04:11:28] [Server thread/INFO]: Max TNT Explosions: 100
[04:11:28] [Server thread/INFO]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[04:11:28] [Server thread/INFO]: Experience Merge Radius: 3.0
[04:11:28] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: false
[04:11:28] [Server thread/INFO]: Item Merge Radius: 2.5
[04:11:28] [Server thread/INFO]: Item Despawn Rate: 6000
[04:11:28] [Server thread/INFO]: View Distance: 8
[04:11:28] [Server thread/INFO]: Simulation Distance: 10
[04:11:28] [Server thread/INFO]: Arrow Despawn Rate: 1200 Trident Respawn Rate:1200
[04:11:28] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[04:11:28] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[04:11:28] [Server thread/INFO]: Mob Spawn Range: 6
[04:11:28] [Server thread/INFO]: -------- World Settings For [world_the_end] --------
[04:11:28] [Server thread/INFO]: Cactus Growth Modifier: 100%
[04:11:28] [Server thread/INFO]: Cane Growth Modifier: 100%
[04:11:28] [Server thread/INFO]: Melon Growth Modifier: 100%
[04:11:28] [Server thread/INFO]: Mushroom Growth Modifier: 100%
[04:11:28] [Server thread/INFO]: Pumpkin Growth Modifier: 100%
[04:11:28] [Server thread/INFO]: Sapling Growth Modifier: 100%
[04:11:28] [Server thread/INFO]: Beetroot Growth Modifier: 100%
[04:11:28] [Server thread/INFO]: Carrot Growth Modifier: 100%
[04:11:28] [Server thread/INFO]: Potato Growth Modifier: 100%
[04:11:28] [Server thread/INFO]: Wheat Growth Modifier: 100%
[04:11:28] [Server thread/INFO]: NetherWart Growth Modifier: 100%
[04:11:28] [Server thread/INFO]: Vine Growth Modifier: 100%
[04:11:28] [Server thread/INFO]: Cocoa Growth Modifier: 100%
[04:11:28] [Server thread/INFO]: Bamboo Growth Modifier: 100%
[04:11:28] [Server thread/INFO]: SweetBerry Growth Modifier: 100%
[04:11:28] [Server thread/INFO]: Kelp Growth Modifier: 100%
[04:11:28] [Server thread/INFO]: Entity Activation Range: An 32 / Mo 32 / Ra 48 / Mi 16 / Tiv true
[04:11:28] [Server thread/INFO]: Entity Tracking Range: Pl 48 / An 48 / Mo 48 / Mi 32 / Other 64
[04:11:28] [Server thread/INFO]: Hopper Transfer: 8 Hopper Check: 1 Hopper Amount: 1
[04:11:28] [Server thread/INFO]: Custom Map Seeds:  Village: 10387312 Desert: 14357617 Igloo: 14357618 Jungle: 14357619 Swamp: 14357620 Monument: 10387313 Ocean: 14357621 Shipwreck: 165745295 End City: 10387313 Slime: 987234911 Bastion: 30084232 Fortress: 30084232 Mansion: 10387319 Fossil: 14357921 Portal: 34222645
[04:11:28] [Server thread/INFO]: Max TNT Explosions: 100
[04:11:28] [Server thread/INFO]: Tile Max Tick Time: 50ms Entity max Tick Time: 50ms
[04:11:28] [Server thread/INFO]: Experience Merge Radius: 3.0
[04:11:28] [Server thread/INFO]: Allow Zombie Pigmen to spawn from portal blocks: false
[04:11:28] [Server thread/INFO]: Item Merge Radius: 2.5
[04:11:28] [Server thread/INFO]: Item Despawn Rate: 6000
[04:11:28] [Server thread/INFO]: View Distance: 8
[04:11:28] [Server thread/INFO]: Simulation Distance: 10
[04:11:28] [Server thread/INFO]: Arrow Despawn Rate: 1200 Trident Respawn Rate:1200
[04:11:28] [Server thread/INFO]: Zombie Aggressive Towards Villager: true
[04:11:28] [Server thread/INFO]: Nerfing mobs spawned from spawners: false
[04:11:28] [Server thread/INFO]: Mob Spawn Range: 6
[04:11:28] [Server thread/INFO]: Preparing start region for dimension minecraft:overworld
[04:11:28] [Server thread/INFO]: Time elapsed: 278 ms
[04:11:28] [Server thread/INFO]: Preparing start region for dimension minecraft:the_nether
[04:11:28] [Server thread/INFO]: Time elapsed: 73 ms
[04:11:28] [Server thread/INFO]: Preparing start region for dimension minecraft:the_end
[04:11:29] [Server thread/INFO]: Time elapsed: 72 ms
[04:11:29] [Server thread/INFO]: [LastLog] Enabling LastLog v1.2.0
[04:11:29] [Server thread/INFO]: [PlaceholderAPI] Enabling PlaceholderAPI v2.10.10
[04:11:29] [Server thread/INFO]: [PlaceholderAPI] Fetching available expansion information...
[04:11:29] [Server thread/INFO]: [RHLeafDecay] Enabling RHLeafDecay v1.18_R1
[04:11:29] [Server thread/INFO]: [RHLeafDecay] The plugin has been loaded!
[04:11:29] [Server thread/INFO]: [RHLeafDecay] You are using version 1.18_R1 w/ 💕 by X0R3
[04:11:29] [Server thread/INFO]: [RHLeafDecay] Info:
[04:11:29] [Server thread/INFO]: [RHLeafDecay] If you want your server be presented on the plugin page, then please contact me! :)
[04:11:29] [Server thread/INFO]: [NoMobGrief] Enabling NoMobGrief v1.0.0*
[04:11:29] [Server thread/INFO]: [PlayTime] Enabling PlayTime v3.3*
[04:11:29] [Server thread/INFO]: [PlayTime] PlaceholderAPI was found! Registering Placeholders.
[04:11:29] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: playtime
[04:11:29] [Server thread/INFO]: [Essentials] Enabling Essentials v2.19.1-dev+48-c45c741
[04:11:29] [Server thread/INFO]: [Essentials] Attempting to convert old kits in config.yml to new kits.yml
[04:11:29] [Server thread/INFO]: [Essentials] No kits found to migrate.
[04:11:29] [Server thread/INFO]: [Essentials] Loaded 36926 items from items.json.
[04:11:29] [Server thread/INFO]: [Essentials] Using locale en
[04:11:29] [Server thread/INFO]: [Essentials] ServerListPingEvent: Spigot iterator API
[04:11:29] [Server thread/INFO]: [Essentials] Starting Metrics. Opt-out using the global bStats config.
[04:11:29] [Server thread/INFO]: [Vault] [Economy] Essentials Economy hooked.
[04:11:29] [Server thread/INFO]: [Essentials] Using Vault based permissions (LuckPerms)
[04:11:29] [Server thread/INFO]: [EssentialsProtect] Enabling EssentialsProtect v2.19.1-dev+48-c45c741
[04:11:29] [Server thread/INFO]: [EssentialsProtect] Continuing to enable Protect.
[04:11:29] [Server thread/INFO]: [EssentialsProtect] Starting Metrics. Opt-out using the global bStats config.
[04:11:29] [Server thread/INFO]: [TAB] Enabling TAB v3.0.0
[04:11:29] [Server thread/INFO]: [TAB] Server version: 1.18 (v1_18_R1)
[04:11:29] [Server thread/INFO]: [TAB] Loaded NMS hook in 28ms
[04:11:30] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: tab
[04:11:30] [Server thread/INFO]: [TAB] Enabled in 103ms
[04:11:30] [Server thread/INFO]: [WorldGuard] Enabling WorldGuard v7.0.6+1cff55f
[04:11:30] [Server thread/INFO]: [WorldGuard] (world) TNT ignition is PERMITTED.
[04:11:30] [Server thread/INFO]: [WorldGuard] (world) Lighters are PERMITTED.
[04:11:30] [Server thread/INFO]: [WorldGuard] (world) Lava fire is PERMITTED.
[04:11:30] [Server thread/INFO]: [WorldGuard] (world) Fire spread is UNRESTRICTED.
[04:11:30] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world'
[04:11:30] [Server thread/INFO]: [WorldGuard] (world_nether) TNT ignition is PERMITTED.
[04:11:30] [Server thread/INFO]: [WorldGuard] (world_nether) Lighters are PERMITTED.
[04:11:30] [Server thread/INFO]: [WorldGuard] (world_nether) Lava fire is PERMITTED.
[04:11:30] [Server thread/INFO]: [WorldGuard] (world_nether) Fire spread is UNRESTRICTED.
[04:11:30] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world_nether'
[04:11:30] [Server thread/INFO]: [WorldGuard] (world_the_end) TNT ignition is PERMITTED.
[04:11:30] [Server thread/INFO]: [WorldGuard] (world_the_end) Lighters are PERMITTED.
[04:11:30] [Server thread/INFO]: [WorldGuard] (world_the_end) Lava fire is PERMITTED.
[04:11:30] [Server thread/INFO]: [WorldGuard] (world_the_end) Fire spread is UNRESTRICTED.
[04:11:30] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world_the_end'
[04:11:30] [Server thread/INFO]: [WorldGuard] Loading region data...
[04:11:30] [Server thread/INFO]: [CoreProtect] Enabling CoreProtect v20.1
[04:11:31] [Server thread/INFO]: [CoreProtect] CoreProtect has been successfully enabled! 
[04:11:31] [Server thread/INFO]: [CoreProtect] Using SQLite for data storage.
[04:11:31] [Server thread/INFO]: --------------------
[04:11:31] [Server thread/INFO]: [CoreProtect] Enjoy CoreProtect? Join our Discord!
[04:11:31] [Server thread/INFO]: [CoreProtect] Discord: www.coreprotect.net/discord/
[04:11:31] [Server thread/INFO]: --------------------
[04:11:31] [Server thread/INFO]: [WorldGuardExtraFlags] Enabling WorldGuardExtraFlags v4.1.5-SNAPSHOT
[04:11:31] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.TeleportOnEntryFlagHandler
[04:11:31] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.TeleportOnExitFlagHandler
[04:11:31] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.CommandOnEntryFlagHandler
[04:11:31] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.CommandOnExitFlagHandler
[04:11:31] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.ConsoleCommandOnEntryFlagHandler
[04:11:31] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.ConsoleCommandOnExitFlagHandler
[04:11:31] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.WalkSpeedFlagHandler
[04:11:31] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.BlockedEffectsFlagHandler
[04:11:31] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.GodmodeFlagHandler
[04:11:31] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.GiveEffectsFlagHandler
[04:11:31] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.FlyFlagHandler
[04:11:31] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.FlySpeedFlagHandler
[04:11:31] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.PlaySoundsFlagHandler
[04:11:31] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.GlideFlagHandler
[04:11:31] [Server thread/INFO]: [AdvancedRegionMarket] Enabling AdvancedRegionMarket v3.3.5
[04:11:31] [Server thread/INFO]: [AdvancedRegionMarket] Using WorldGuard7 adapter
[04:11:31] [Server thread/INFO]: [AdvancedRegionMarket] Using WorldEdit7 adapter
[04:11:31] [Server thread/INFO]: [AdvancedRegionMarket] Using MC 1.14 sign adapter
[04:11:31] [Server thread/INFO]: [AdvancedRegionMarket] Regions loaded!
[04:11:31] [Server thread/INFO]: [AdvancedRegionMarket] Programmed by Alex9849
[04:11:31] [Server thread/INFO]: [AdvancedRegionMarket] I'm always searching for better translations of AdvancedRegionMarket. If you've translated the plugin it would be very nice if you would send me your translation via spigot private message! :)
[04:11:31] [Server thread/INFO]: [GriefPrevention] Enabling GriefPrevention v16.17.1-2b69191
[04:11:31] [Server thread/INFO]: [GriefPrevention] Finished loading configuration.
[04:11:31] [Server thread/INFO]: [GriefPrevention] 10 total claims loaded.
[04:11:31] [Server thread/INFO]: [GriefPrevention] Customizable messages loaded.
[04:11:31] [Server thread/INFO]: [GriefPrevention] Successfully hooked into WorldGuard.
[04:11:31] [Server thread/INFO]: [GriefPrevention] Finished loading data (File Mode).
[04:11:31] [Server thread/INFO]: [GriefPrevention] Boot finished.
[04:11:31] [Server thread/INFO]: [ChestShop] Enabling ChestShop v3.12 (build 307)
[04:11:31] [Server thread/INFO]: [ChestShop] Found locales ar, it, es, el, hu, fr, pl, cs, pt_br, ja, sv, da, es_mx, sr, tr, nl, zh_tw, af, ko, no, vi, ro, he, ru, ca, zh, de, fi, en, uk
[04:11:32] [Server thread/INFO]: [ChestShop] Using EssentialsX Economy as the Economy provider now.
[04:11:32] [Server thread/INFO]: [ChestShop] Vault loaded!
[04:11:32] [Server thread/INFO]: [ChestShop] Using Paper's BlockDestroyEvent instead of the BlockPhysicsEvent!
[04:11:32] [Server thread/INFO]: [ChestShop] Auto-updater is disabled. If you want the plugin to automatically download new releases then set 'TURN_OFF_UPDATES' to 'false' in your config.yml!
[04:11:32] [Server thread/INFO]: [PlaceholderAPI] Placeholder expansion registration initializing...
[04:11:32] [Server thread/INFO]: Starting remote control listener
[04:11:32] [Server thread/INFO]: Thread RCON Listener started
[04:11:32] [Server thread/INFO]: RCON running on 0.0.0.0:25575
[04:11:32] [Server thread/INFO]: Running delayed init tasks
[04:11:32] [Craft Scheduler Thread - 0 - Essentials/INFO]: [Essentials] Fetching version information...
[04:11:32] [Server thread/INFO]: [Essentials] Essentials found a compatible payment resolution method: Vault Compatibility Layer (v1.7.3-b131)!
[04:11:32] [Server thread/INFO]: [CoreProtect] WorldEdit logging successfully initialized.
[04:11:32] [Server thread/WARN]: [PlaceholderAPI] Loaded class net.milkbowl.vault.economy.Economy from Vault v1.7.3-b131 which is not a depend, softdepend or loadbefore of this plugin.
[04:11:32] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: vault
[04:11:32] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: statistic
[04:11:32] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: server
[04:11:32] [Server thread/INFO]: 3 placeholder hooks successfully registered!
[04:11:32] [Server thread/INFO]: Done (14.032s)! For help, type "help"
[04:11:32] [Server thread/INFO]: Timings Reset
[04:11:32] [Craft Scheduler Thread - 5 - Vault/INFO]: [Vault] Checking for Updates ... 
[04:11:32] [Craft Scheduler Thread - 2 - PlayTime/INFO]: [PlayTime] Latest version is installed! - v3.3
[04:11:32] [Craft Scheduler Thread - 5 - Vault/INFO]: [Vault] No new version available
[04:11:32] [Craft Scheduler Thread - 0 - Essentials/WARN]: [Essentials] You're 4 EssentialsX dev build(s) out of date!
[04:11:32] [Craft Scheduler Thread - 0 - Essentials/WARN]: [Essentials] Download it here: https://essentialsx.net/downloads.html
[04:11:33] [User Authenticator #1/INFO]: UUID of player DannyDelusion is 367da268-8985-47d3-8a37-2c1c8ddf170c
[04:11:35] [Server thread/INFO]: DannyDelusion joined the game
[04:11:35] [Server thread/INFO]: DannyDelusion[/77.101.39.235:64661] logged in with entity id 3 at ([world]-16.204412358530256, 67.0, 10.562064393617796)
[04:11:37] [Server thread/WARN]: UUID of added entity already exists: EntityArmorStand['Armor Stand'/257, uuid='291dfbec-2b7b-4c2b-9899-f665ea53af5d', l='ServerLevel[world]', x=22068880.50, y=1000.00, z=-4185487.50, cpos=[1379305, -261593], tl=2136397, v=false]
[04:11:59] [Server thread/INFO]: [GriefPrevention] DannyDelusion placed a sign @ world: x-15, z10;Admin Shop;1;B 1 ;52:2
[04:12:07] [Server thread/INFO]: DannyDelusion issued server command: /csaccess
[04:12:28] [Server thread/INFO]: [GriefPrevention] DannyDelusion placed a sign @ world: x-15, z10;Admin Shop;1;B 1;chest
[04:12:28] [Craft Scheduler Thread - 8 - ChestShop/INFO]: [ChestShop] DannyDelusion created an Admin Shop - 1 Chest - B 1 - at [world] -15, 67, 10
[04:12:38] [Server thread/INFO]: DannyDelusion issued server command: /gamemode survival
[04:12:39] [Server thread/INFO]: [ChestShop] DannyDelusion bought 1 Chest for 1.00 from Admin Shop at [world] -15, 67, 10
[04:12:50] [User Authenticator #2/INFO]: UUID of player LeNatalie is 57021048-9125-4e33-abd5-3c3613ed0aae
[04:12:50] [Server thread/INFO]: LeNatalie joined the game
[04:12:50] [Server thread/INFO]: LeNatalie[/77.101.39.235:52232] logged in with entity id 438 at ([world]3144.8804485985206, 63.0, 4853.9140473259495)
[04:13:39] [Server thread/INFO]: [GriefPrevention] DannyDelusion placed a sign @ world: x-15, z10;Admin Shop;1;B 1 ;52:105
[04:16:20] [Server thread/INFO]: [GriefPrevention] DannyDelusion placed a sign @ world: x-15, z10;Admin Shop;1;B 1 ;Spawner:e2
[04:16:34] [Server thread/INFO]: DannyDelusion issued server command: /gamemode creative
[04:16:50] [Server thread/INFO]: [GriefPrevention] DannyDelusion placed a sign @ world: x-15, z10;Admin Shop;1;B 1 ;Spawner#ed
[04:18:05] [Server thread/INFO]: LeNatalie issued server command: /sell hand
[04:18:05] [Server thread/INFO]: [Essentials] LeNatalie sold bamboo for £3,840 (1,024 items at £3.75 each).
[04:20:08] [Server thread/INFO]: LeNatalie issued server command: /sell hand
[04:20:08] [Server thread/INFO]: [Essentials] LeNatalie sold bamboo for £3,645 (972 items at £3.75 each).
[04:21:16] [Server thread/INFO]: DannyDelusion issued server command: /give DannyDelusion minecraft:mob_spawner
[04:28:34] [Server thread/INFO]: DannyDelusion issued server command: /give DannyDelusion minecraft:spawner
[04:28:39] [Server thread/INFO]: DannyDelusion issued server command: /give DannyDelusion minecraft:spawner 1
[04:28:52] [Server thread/INFO]: DannyDelusion issued server command: /give DannyDelusion minecraft:spawner;zombie
[04:29:01] [Server thread/INFO]: LeNatalie issued server command: /sell hand
[04:29:01] [Server thread/INFO]: [Essentials] LeNatalie sold bamboo for £3,746.25 (999 items at £3.75 each).
[04:29:29] [Server thread/INFO]: DannyDelusion issued server command: /give DannyDelusion spawner
[04:29:43] [Server thread/INFO]: DannyDelusion issued server command: /remove DannyDelusion spawner 63
[04:29:49] [Server thread/INFO]: DannyDelusion issued server command: /remove DannyDelusion spawner
[04:30:44] [Server thread/INFO]: DannyDelusion issued server command: /iteminfo
[04:31:13] [Server thread/INFO]: [GriefPrevention] DannyDelusion placed a sign @ world: x-15, z10;Admin Shop;1;B 1 ;Spawner
[04:31:19] [Server thread/INFO]: LeNatalie issued server command: /sell hand 1
[04:31:19] [Server thread/INFO]: [Essentials] LeNatalie sold sweet_berries for £0.50 (1 items at £0.50 each).
[04:31:25] [Server thread/INFO]: LeNatalie issued server command: /sell hand
[04:31:25] [Server thread/INFO]: [Essentials] LeNatalie sold sweet_berries for £0.50 (1 items at £0.50 each).
[04:31:31] [Server thread/INFO]: [GriefPrevention] DannyDelusion placed a sign @ world: x-15, z10;Admin Shop;1;B 1;?
[04:31:34] [Server thread/INFO]: [GriefPrevention] DannyDelusion placed a sign @ world: x-15, z10;Admin Shop;1;B 1;Spawner
[04:31:34] [Craft Scheduler Thread - 105 - ChestShop/INFO]: [ChestShop] DannyDelusion created an Admin Shop - 1 Spawner - B 1 - at [world] -15, 67, 10
[04:32:12] [Server thread/INFO]: [GriefPrevention] DannyDelusion placed a sign @ world: x-14, z10;Admin Shop;1;B 1 ;?
[04:32:42] [Server thread/INFO]: [GriefPrevention] DannyDelusion placed a sign @ world: x-15, z10;Admin Shop;1;B 1;?
[04:32:55] [Server thread/INFO]: [GriefPrevention] DannyDelusion placed a sign @ world: x-14, z10;Admin Shop;1;B 1;?
[04:32:59] [Server thread/INFO]: [GriefPrevention] DannyDelusion placed a sign @ world: x-14, z10;Admin Shop;1;B 1;Spawner
[04:32:59] [Craft Scheduler Thread - 110 - ChestShop/INFO]: [ChestShop] DannyDelusion created an Admin Shop - 1 Spawner - B 1 - at [world] -14, 68, 10
[04:33:31] [Server thread/INFO]: LeNatalie issued server command: /arm gui
[04:33:52] [Server thread/INFO]: [ChestShop] LeNatalie bought 1 Spawner for 1.00 from Admin Shop at [world] -14, 68, 10
[04:34:13] [Server thread/INFO]: [ChestShop] LeNatalie bought 1 Spawner for 1.00 from Admin Shop at [world] -14, 68, 10
[04:35:28] [Server thread/INFO]: [ChestShop] LeNatalie bought 1 Spawner for 1.00 from Admin Shop at [world] -14, 68, 10
[04:35:50] [Server thread/INFO]: DannyDelusion issued server command: /give DannyDelusion spawner:zombie
[04:35:57] [Server thread/INFO]: DannyDelusion issued server command: /give DannyDelusion spawner:2
[04:36:13] [Server thread/INFO]: DannyDelusion issued server command: /iteminfo
[04:36:43] [Server thread/INFO]: [GriefPrevention] DannyDelusion placed a sign @ world: x-14, z10;Admin Shop;1;B 1;?
[04:36:47] [Server thread/INFO]: [GriefPrevention] DannyDelusion placed a sign @ world: x-14, z10;Admin Shop;1;B 1;Spawner:2#1
[04:36:47] [Craft Scheduler Thread - 129 - ChestShop/INFO]: [ChestShop] DannyDelusion created an Admin Shop - 1 Spawner:2#1 - B 1 - at [world] -14, 68, 10
[04:37:18] [Server thread/INFO]: [ChestShop] LeNatalie bought 1 Spawner:2#1 for 1.00 from Admin Shop at [world] -14, 68, 10
[04:38:34] [Server thread/INFO]: LeNatalie issued server command: /baltop
[04:38:36] [Server thread/INFO]: DannyDelusion issued server command: /clear
[04:39:34] [Server thread/INFO]: DannyDelusion issued server command: /give DannyDelusion spawner:52#56
[04:39:40] [Server thread/INFO]: DannyDelusion issued server command: /give DannyDelusion spawner:ghast
[04:39:45] [Server thread/INFO]: DannyDelusion issued server command: /give DannyDelusion spawner:52
[04:39:53] [Server thread/INFO]: DannyDelusion issued server command: /clear
[04:40:37] [Server thread/INFO]: DannyDelusion issued server command: /give DannyDelusion Spawner:zombie
[04:40:43] [Server thread/INFO]: LeNatalie issued server command: /home
[04:44:34] [Server thread/INFO]: [GriefPrevention] DannyDelusion placed a sign @ world: x-14, z10;[repair];all;1
[04:47:21] [Server thread/INFO]: DannyDelusion issued server command: /ess reload
[04:47:21] [Server thread/INFO]: [Essentials] Loaded 36929 items from items.json.
[04:47:21] [Server thread/INFO]: [Essentials] Using locale en
[04:47:22] [Server thread/INFO]: [Essentials] ServerListPingEvent: Spigot iterator API
[04:47:37] [Server thread/INFO]: [GriefPrevention] DannyDelusion placed a sign @ world: x-14, z10;[repair];all;£1
[04:49:19] [Server thread/INFO]: [GriefPrevention] DannyDelusion placed a sign @ world: x-14, z11;[trade];Bonemeal;100
[04:49:35] [Server thread/INFO]: [GriefPrevention] DannyDelusion placed a sign @ world: x-14, z11;[trade]
[04:49:50] [Server thread/INFO]: DannyDelusion issued server command: /iteminfo
[04:50:55] [Server thread/INFO]: [GriefPrevention] DannyDelusion placed a sign @ world: x-14, z11;[trade];<Oak Sapling>;£5
[04:51:32] [Server thread/INFO]: [GriefPrevention] DannyDelusion placed a sign @ world: x-14, z11;[trade];Dirt;1:10
[04:51:54] [Server thread/INFO]: [GriefPrevention] DannyDelusion placed a sign @ world: x-14, z11;[trade];1 Dirt;1 Iron
[04:52:30] [Server thread/INFO]: [GriefPrevention] DannyDelusion placed a sign @ world: x-14, z11;[trade];1 Dirt;5:100
[04:53:27] [Server thread/INFO]: [GriefPrevention] DannyDelusion placed a sign @ world: x-14, z11;[trade];1 Dirt;1 Grass_Block
[04:54:05] [Server thread/INFO]: [GriefPrevention] DannyDelusion placed a sign @ world: x-14, z11;[trade];1 Dirt;1 Spawner
[04:55:09] [Server thread/INFO]: [GriefPrevention] DannyDelusion placed a sign @ world: x-14, z11;[trade];£1;Dirt:20
[04:55:32] [Server thread/INFO]: [GriefPrevention] DannyDelusion placed a sign @ world: x-14, z11;[trade];10;1 Dirt:50
[04:55:49] [Server thread/INFO]: [GriefPrevention] DannyDelusion placed a sign @ world: x-16, z15;[balance]
[04:56:09] [Server thread/INFO]: DannyDelusion issued server command: /itemdb
[04:56:57] [Server thread/INFO]: [GriefPrevention] DannyDelusion placed a sign @ world: x-14, z10;[trade];1 ?;1 Dirt:10
[04:57:44] [Server thread/INFO]: [GriefPrevention] DannyDelusion placed a sign @ world: x-14, z10;[trade];1 
[04:57:54] [Server thread/INFO]: DannyDelusion issued server command: /itemdb
[04:58:01] [Server thread/INFO]: DannyDelusion issued server command: /itemdb
[04:58:27] [Server thread/INFO]: [GriefPrevention] DannyDelusion placed a sign @ world: x-14, z10;[trade];1 crimsoil;1 pdslate:64
[04:58:39] [Server thread/INFO]: LeNatalie issued server command: /arm gui
[04:58:50] [Server thread/INFO]: [GriefPrevention] DannyDelusion placed a sign @ world: x-16, z15;[repair];all;1
[04:58:58] [Server thread/INFO]: [GriefPrevention] DannyDelusion placed a sign @ world: x-19, z15;[balance]
[05:00:22] [Server thread/INFO]: DannyDelusion issued server command: /lp editor
[05:01:24] [Server thread/INFO]: DannyDelusion issued server command: /lp applyedits 1xN3TvkO12
[05:01:24] [luckperms-command-executor/INFO]: [LP] LOG > (DannyDelusion) [G] (default)
[05:01:24] [luckperms-command-executor/INFO]: [LP] LOG > webeditor add essentials.signs.use.trade true
[05:01:24] [luckperms-command-executor/INFO]: [LP] LOG > (DannyDelusion) [G] (default)
[05:01:24] [luckperms-command-executor/INFO]: [LP] LOG > webeditor add essentials.signs.trade.use true
[05:01:24] [luckperms-command-executor/INFO]: [LP] LOG > (DannyDelusion) [G] (default)
[05:01:24] [luckperms-command-executor/INFO]: [LP] LOG > webeditor add essentials.signs.trade.create true
[05:01:24] [luckperms-command-executor/INFO]: [LP] LOG > (DannyDelusion) [G] (default)
[05:01:24] [luckperms-command-executor/INFO]: [LP] LOG > webeditor add essentials.signs.use.balance true
[05:01:24] [luckperms-command-executor/INFO]: [LP] LOG > (DannyDelusion) [G] (default)
[05:01:24] [luckperms-command-executor/INFO]: [LP] LOG > webeditor add essentials.signs.repair.use true
[05:01:24] [luckperms-command-executor/INFO]: [LP] LOG > (DannyDelusion) [G] (default)
[05:01:24] [luckperms-command-executor/INFO]: [LP] LOG > webeditor add essentials.signs.trade.break true
[05:01:24] [luckperms-command-executor/INFO]: [LP] LOG > (DannyDelusion) [G] (default)
[05:01:24] [luckperms-command-executor/INFO]: [LP] LOG > webeditor add essentials.signs.use.repair true
[05:01:24] [luckperms-command-executor/INFO]: [LP] LOG > (DannyDelusion) [G] (default)
[05:01:24] [luckperms-command-executor/INFO]: [LP] LOG > webeditor add essentials.signs.balance.use true
[05:01:24] [luckperms-command-executor/INFO]: [LP] LOG > (DannyDelusion) [G] (default)
[05:01:24] [luckperms-command-executor/INFO]: [LP] LOG > webeditor add essentials.signs.trade true
[05:01:24] [luckperms-command-executor/INFO]: [LP] LOG > (DannyDelusion) [G] (default)
[05:01:24] [luckperms-command-executor/INFO]: [LP] LOG > webeditor add essentials.signs.use true
[05:02:52] [Server thread/INFO]: DannyDelusion issued server command: /clear
[05:03:00] [Server thread/INFO]: DannyDelusion issued server command: /clear
[05:03:09] [Server thread/INFO]: DannyDelusion issued server command: /clear
[05:05:37] [Server thread/INFO]: DannyDelusion issued server command: /i blaze_spawner
[05:05:53] [Server thread/INFO]: [GriefPrevention] DannyDelusion placed a sign @ world: x-14, z10;Admin Shop;1;B 1;?
[05:05:55] [Server thread/INFO]: [GriefPrevention] DannyDelusion placed a sign @ world: x-14, z10;Admin Shop;1;B 1;Spawner#2
[05:05:55] [Craft Scheduler Thread - 274 - ChestShop/INFO]: [ChestShop] DannyDelusion created an Admin Shop - 1 Spawner#3 - B 1 - at [world] -14, 68, 10
[05:06:24] [Server thread/INFO]: [ChestShop] LeNatalie bought 1 Spawner#3 for 1.00 from Admin Shop at [world] -14, 68, 10
[05:08:53] [Server thread/INFO]: DannyDelusion issued server command: /lp editor
[05:11:12] [Server thread/INFO]: DannyDelusion issued server command: /lp applyedits 5Nm1DEXzxc
[05:11:12] [luckperms-command-executor/INFO]: [LP] LOG > (DannyDelusion) [G] (default)
[05:11:12] [luckperms-command-executor/INFO]: [LP] LOG > webeditor add essentials.spawnerconvert.* true
[05:12:45] [Server thread/INFO]: [GriefPrevention] DannyDelusion placed a sign @ world: x-14, z10;Admin Shop;1;B 1 ;blaze Spawner
[05:12:57] [Server thread/INFO]: [GriefPrevention] DannyDelusion placed a sign @ world: x-14, z10;Admin Shop;1;B 1;?
[05:12:58] [Server thread/INFO]: [GriefPrevention] DannyDelusion placed a sign @ world: x-14, z10;Admin Shop;1;B 1;Spawner#3
[05:12:58] [Craft Scheduler Thread - 307 - ChestShop/INFO]: [ChestShop] DannyDelusion created an Admin Shop - 1 Spawner#2 - B 1 - at [world] -14, 68, 10
[05:13:22] [Server thread/INFO]: DannyDelusion issued server command: /gamemode survival
[05:13:44] [Server thread/INFO]: [ChestShop] DannyDelusion bought 1 Spawner#2 for 1.00 from Admin Shop at [world] -14, 68, 10
[05:14:10] [Server thread/INFO]: DannyDelusion issued server command: /gamemode creative
[05:14:15] [Server thread/INFO]: DannyDelusion issued server command: /ess reload
[05:14:15] [Server thread/INFO]: [Essentials] Loaded 36929 items from items.json.
[05:14:15] [Server thread/INFO]: [Essentials] Using locale en
[05:14:15] [Server thread/INFO]: [Essentials] ServerListPingEvent: Spigot iterator API
[05:14:30] [Server thread/INFO]: DannyDelusion issued server command: /gamemode survival
[05:14:32] [Server thread/INFO]: [ChestShop] DannyDelusion bought 1 Spawner#2 for 1.00 from Admin Shop at [world] -14, 68, 10
[05:14:37] [Server thread/INFO]: DannyDelusion issued server command: /gamemode creative
[05:15:14] [Server thread/INFO]: DannyDelusion issued server command: /lp editor
[05:17:20] [Server thread/INFO]: DannyDelusion issued server command: /lp applyedits QhUdU7rOTQ
[05:18:02] [Server thread/INFO]: DannyDelusion issued server command: /i zpigmenmspawner
[05:20:06] [Server thread/INFO]: [GriefPrevention] DannyDelusion placed a sign @ world: x-14, z11;[disposal]
[05:20:21] [Server thread/INFO]: [GriefPrevention] DannyDelusion placed a sign @ world: x-14, z11;[disposal]
[05:21:06] [Server thread/INFO]: [GriefPrevention] DannyDelusion placed a sign @ world: x-14, z11;[heal];1
[05:21:31] [Server thread/INFO]: DannyDelusion issued server command: /lp editor
[05:22:47] [Server thread/INFO]: DannyDelusion issued server command: /lp applyedits mtMajU860O
[05:22:47] [luckperms-command-executor/INFO]: [LP] LOG > (DannyDelusion) [G] (default)
[05:22:47] [luckperms-command-executor/INFO]: [LP] LOG > webeditor add essentials.signs.heal.use true
[05:23:28] [Server thread/INFO]: DannyDelusion issued server command: /afk DannyDelusion reee
[05:23:36] [Server thread/INFO]: DannyDelusion issued server command: /afk DannyDelusion reee
[05:23:47] [Server thread/INFO]: DannyDelusion issued server command: /gamemode survival
[05:23:52] [Server thread/INFO]: [ChestShop] DannyDelusion bought 1 Spawner#2 for 1.00 from Admin Shop at [world] -14, 68, 10
[05:24:03] [Server thread/INFO]: [ChestShop] DannyDelusion bought 1 Spawner#2 for 1.00 from Admin Shop at [world] -14, 68, 10
[05:24:04] [Server thread/INFO]: [ChestShop] DannyDelusion bought 1 Spawner#2 for 1.00 from Admin Shop at [world] -14, 68, 10
[05:24:06] [Server thread/INFO]: [ChestShop] DannyDelusion bought 1 Spawner#2 for 1.00 from Admin Shop at [world] -14, 68, 10
[05:24:12] [Server thread/INFO]: DannyDelusion issued server command: /clear
[05:24:19] [Server thread/INFO]: DannyDelusion issued server command: /gamemode creative
[05:24:30] [Server thread/INFO]: [GriefPrevention] DannyDelusion placed a sign @ world: x-14, z12;[repair];1
[05:24:42] [Server thread/INFO]: [GriefPrevention] DannyDelusion placed a sign @ world: x-14, z12;[repair];All;1
[05:26:21] [Server thread/INFO]: [ChestShop] LeNatalie bought 1 Spawner#2 for 1.00 from Admin Shop at [world] -14, 68, 10
[05:27:02] [Server thread/INFO]: [GriefPrevention] DannyDelusion placed a sign @ world: x103, z43;[Feed];1
[05:28:28] [Server thread/INFO]: LeNatalie issued server command: /arm gui
[05:28:53] [Server thread/INFO]: [ChestShop] LeNatalie bought 1 Spawner#2 for 1.00 from Admin Shop at [world] -14, 68, 10
[05:29:18] [Server thread/INFO]: LeNatalie issued server command: /home
[05:29:27] [Server thread/INFO]: DannyDelusion issued server command: /home LeNatalie:home
[05:30:02] [Server thread/INFO]: DannyDelusion issued server command: /i skeleton_horse_spawner
[05:30:46] [Server thread/INFO]: [GriefPrevention] DannyDelusion placed a sign @ world: x3121, z4842;Admin Shop;1;B 1;?
[05:30:49] [Server thread/INFO]: [GriefPrevention] DannyDelusion placed a sign @ world: x3121, z4842;Admin Shop;1;B 1;Spawner#4
[05:30:49] [Craft Scheduler Thread - 395 - ChestShop/INFO]: [ChestShop] DannyDelusion created an Admin Shop - 1 Spawner#5 - B 1 - at [world] 3121, 63, 4842
[05:31:04] [Server thread/INFO]: [ChestShop] LeNatalie bought 1 Spawner#5 for 1.00 from Admin Shop at [world] 3121, 63, 4842
[05:32:07] [Server thread/INFO]: DannyDelusion issued server command: /iteminfo
[05:32:25] [Server thread/INFO]: [GriefPrevention] DannyDelusion placed a sign @ world: x3120, z4842;Admin Shop;1;B 1;Spawner#4
[05:32:25] [Craft Scheduler Thread - 401 - ChestShop/INFO]: [ChestShop] DannyDelusion created an Admin Shop - 1 Spawner#5 - B 1 - at [world] 3120, 63, 4842
[05:32:35] [Server thread/INFO]: [ChestShop] LeNatalie bought 1 Spawner#5 for 1.00 from Admin Shop at [world] 3120, 63, 4842
[05:32:54] [Server thread/INFO]: [GriefPrevention] DannyDelusion placed a sign @ world: x3120, z4841;Admin Shop;1;B 1 ;Spawner#4
[05:33:08] [Server thread/INFO]: DannyDelusion issued server command: /iteminfo
[05:33:20] [Server thread/INFO]: DannyDelusion issued server command: /gamemode survival
[05:33:31] [Server thread/INFO]: DannyDelusion issued server command: /gamemode creative
[05:37:25] [Server thread/INFO]: DannyDelusion issued server command: /chestshop reload
[05:37:25] [Server thread/INFO]: [ChestShop] Found locales ar, it, es, el, hu, fr, pl, cs, pt_br, ja, sv, da, es_mx, sr, tr, nl, zh_tw, af, ko, no, vi, ro, he, ru, ca, zh, de, fi, en, uk
[05:38:24] [Server thread/INFO]: DannyDelusion issued server command: /i glow_squid_spawner
[05:38:31] [Server thread/INFO]: DannyDelusion issued server command: /iteminfo
[05:38:47] [Server thread/INFO]: [GriefPrevention] DannyDelusion placed a sign @ world: x3119, z4844;Admin Shop;1;B 1;Spawner#6
[05:38:47] [Craft Scheduler Thread - 434 - ChestShop/INFO]: [ChestShop] DannyDelusion created an Admin Shop - 1 Spawner#7 - B 1 - at [world] 3119, 63, 4844
[05:39:38] [Server thread/INFO]: [ChestShop] LeNatalie bought 1 Spawner#7 for 1.00 from Admin Shop at [world] 3119, 63, 4844
[05:40:07] [Server thread/INFO]: [GriefPrevention] DannyDelusion placed a sign @ world: x3119, z4847;Admin Shop;1;B 1;?
[05:40:09] [Server thread/INFO]: [GriefPrevention] DannyDelusion placed a sign @ world: x3119, z4847;Admin Shop;1;B 1;Spawner#6
[05:40:09] [Craft Scheduler Thread - 442 - ChestShop/INFO]: [ChestShop] DannyDelusion created an Admin Shop - 1 Spawner#7 - B 1 - at [world] 3119, 63, 4847
[05:40:14] [Server thread/INFO]: [ChestShop] LeNatalie bought 1 Spawner#7 for 1.00 from Admin Shop at [world] 3119, 63, 4847
[05:40:31] [Server thread/INFO]: LeNatalie issued server command: /iteminfo
[05:41:19] [Server thread/INFO]: [GriefPrevention] DannyDelusion placed a sign @ world: x3119, z4844;Admin Shop;1;B 1;Spawner#6
[05:41:19] [Craft Scheduler Thread - 446 - ChestShop/INFO]: [ChestShop] DannyDelusion created an Admin Shop - 1 Spawner#7 - B 1 - at [world] 3119, 63, 4844
[05:51:36] [Server thread/INFO]: LeNatalie issued server command: /sell hand
[05:51:36] [Server thread/INFO]: [Essentials] LeNatalie sold bamboo for £5,523.75 (1,473 items at £3.75 each).
[05:51:50] [Server thread/INFO]: LeNatalie issued server command: /sell hand
[05:51:50] [Server thread/INFO]: [Essentials] LeNatalie sold bamboo for £4,800 (1,280 items at £3.75 each).
[05:53:05] [Server thread/INFO]: [GriefPrevention] DannyDelusion placed a sign @ world: x3118, z4843;[trade];1;Spawner#6;1
[05:53:46] [Server thread/INFO]: [GriefPrevention] DannyDelusion placed a sign @ world: x3118, z4842;[sell];1;Spawner#6;1
[05:53:54] [Server thread/INFO]: DannyDelusion issued server command: /iteminfo
[05:54:13] [Server thread/INFO]: [GriefPrevention] DannyDelusion placed a sign @ world: x3118, z4842;[sell];1;?;1
[05:54:41] [Server thread/INFO]: [GriefPrevention] DannyDelusion placed a sign @ world: x3119, z4842;[sell];1
[05:54:45] [Server thread/INFO]: DannyDelusion issued server command: /iteminfo
[05:56:16] [Server thread/INFO]: LeNatalie issued server command: /sell hand 1
[05:56:16] [Server thread/INFO]: [Essentials] LeNatalie sold melon_slice for £2.50 (1 items at £2.50 each).
[05:56:39] [Server thread/INFO]: LeNatalie issued server command: /sell hand
[05:56:39] [Server thread/INFO]: [Essentials] LeNatalie sold melon_slice for £1,875 (750 items at £2.50 each).
[05:56:52] [Server thread/INFO]: LeNatalie issued server command: /sell hand
[05:56:52] [Server thread/INFO]: [Essentials] LeNatalie sold pumpkin for £906 (151 items at £6 each).
[05:57:15] [Server thread/INFO]: DannyDelusion issued server command: /csversion
[05:57:23] [Server thread/INFO]: LeNatalie issued server command: /sell hand
[05:57:23] [Server thread/INFO]: [Essentials] LeNatalie sold birch_fence for £175 (7 items at £25 each).
[05:57:49] [Server thread/INFO]: LeNatalie issued server command: /sell hand
[05:57:49] [Server thread/INFO]: [Essentials] LeNatalie sold golden_hoe for £84 (1 items at £84 each).
[05:59:21] [Server thread/INFO]: LeNatalie issued server command: /sell hand
[05:59:21] [Server thread/INFO]: [Essentials] LeNatalie sold pumpkin for £132 (22 items at £6 each).
[05:59:27] [Server thread/INFO]: LeNatalie issued server command: /sell hand
[05:59:27] [Server thread/INFO]: [Essentials] LeNatalie sold melon_slice for £230 (92 items at £2.50 each).
[06:00:21] [Server thread/INFO]: DannyDelusion issued server command: /iteminfo
[06:00:37] [Server thread/INFO]: [GriefPrevention] DannyDelusion placed a sign @ world: x3118, z4847;Admin Shop;1;B 1;?
[06:00:40] [Server thread/INFO]: [GriefPrevention] DannyDelusion placed a sign @ world: x3118, z4847;Admin Shop;1;B 1;Spawner#6
[06:00:40] [Craft Scheduler Thread - 540 - ChestShop/INFO]: [ChestShop] DannyDelusion created an Admin Shop - 1 Spawner#7 - B 1 - at [world] 3118, 63, 4847
[06:00:48] [Server thread/INFO]: DannyDelusion issued server command: /iteminfo
[06:01:13] [Server thread/INFO]: [GriefPrevention] DannyDelusion placed a sign @ world: x3117, z4847;Admin Shop;1;B 1;?
[06:01:16] [Server thread/INFO]: [GriefPrevention] DannyDelusion placed a sign @ world: x3117, z4847;Admin Shop;1;B 1;Spawner#6
[06:01:16] [Craft Scheduler Thread - 544 - ChestShop/INFO]: [ChestShop] DannyDelusion created an Admin Shop - 1 Spawner#7 - B 1 - at [world] 3117, 63, 4847
[06:01:22] [Server thread/INFO]: DannyDelusion issued server command: /iteminfo
[06:02:10] [Server thread/INFO]: [ChestShop] LeNatalie bought 1 Spawner#7 for 1.00 from Admin Shop at [world] 3117, 63, 4847
[06:02:37] [Server thread/INFO]: LeNatalie lost connection: Disconnected
[06:02:37] [Server thread/INFO]: LeNatalie left the game
[06:08:58] [Server thread/INFO]: DannyDelusion issued server command: /version ChestShop
[06:09:46] [Server thread/INFO]: DannyDelusion issued server command: /version

What other plugins are you running?

AdvancedRegionMarket
CoreProtect
Essentials
EssentialsProtect
GriefPrevention
LastLog
LuckPerms
NoMobGrief
PlaceholderAPI
RHLeafDecay
TAB
VAULT
WorldEdit
WorldGuard
WorldGuardExtraFlags

Agreements

Additional context

No response

@DannyDelusion
Copy link
Author

DannyDelusion commented Dec 7, 2021

Item NBT:
{id: "minecraft:spawner", tag: {PublicBukkitValues: {"essentials:convert": 1b}, display: {Name: '{"extra":[{"bold":false,"italic":false,"underlined":false,"strikethrough":false,"obfuscated":false,"text":"glow_squid Spawner"}],"text":""}'}, BlockEntityTag: {MinSpawnDelay: 200s, SpawnData: {entity: {id: "minecraft:glow_squid"}}, MaxNearbyEntities: 6s, z: 0, x: 0, MaxSpawnDelay: 800s, SpawnCount: 4s, RequiredPlayerRange: 16s, id: "minecraft:mob_spawner", SpawnPotentials: [], y: 0, SpawnRange: 4s, Delay: 20s}}, Count: 3b}

Items.db: See attached
items.zip

@Phoenix616
Copy link
Member

That's indeed really odd behaviour. As far as I can tell that only happens with items that use nbt which isn't directly supported by Bukkit's inbuilt serialisation as they seem to result in different serialised strings each time which isn't really ideal. Not much that can be done in the plugin itself, this would need to be fixed in the server directly.

This isn't a big issue though, the shops work just fine even if the IDs don't match up. (The actual items are still the same)

@Phoenix616 Phoenix616 added confirmed bug server issue Issues caused by the used server (Spigot/Paper/etc.) labels Dec 7, 2021
@Phoenix616
Copy link
Member

I just tested this on latest Spigot and the issue doesn't occur there so this seems to be a bug in Paper. It seems to also be present in Paper 1.17 but maybe it gets fixed at some point after 1.18 isn't deemed experimental and old issues can be worked on.

Also #468, #413 and #303 are probably caused by the same underlying issue seeing as they all use a spigot fork too.

@Phoenix616
Copy link
Member

I looked a bit more into it and it looks like it is caused by the NBT data order not being guaranteed and this patch from Paper even increasing the frequency of that occuring. Also the issue might even occur on Spigot itself seeing as it relies on a HashMap which's NBT tag order is also not constant and might change at some point, it just seems to occur a lot less frequent.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
confirmed bug server issue Issues caused by the used server (Spigot/Paper/etc.)
Projects
None yet
Development

No branches or pull requests

2 participants