ChestShop-authors / ChestShop-3

ChestShop - the chest & sign shop plugin for Minecraft Servers running Bukkit/Spigot/Paper
https://dev.bukkit.org/projects/chestshop
GNU Lesser General Public License v2.1
272 stars 178 forks source link

WorldGuard Flag not stopping shops being made #536

Closed XITrickyIX closed 1 year ago

XITrickyIX commented 1 year ago

What is happening?

ChestShop's are still allowed to be made in all the global regions with all the proper flags and config files edited to deny that from happening.

global world Flags

What did you expect to happen?

I expect ChestShop's to not be allowed to be made in the global region with the proper flags and edits done and only allow ChestShops to be allowed to be made in specific regions

Plugin Version

3.12.3-SNAPSHOT

Plugin Config

Config ```yaml # 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: 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 # 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 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 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: 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: 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

Paper version git-Paper-279 (MC: 1.19.2) (Implementing API version 1.19.2-R0.1-SNAPSHOT) (Git: a7df847)

Server Log

Log ``` [16:53:33] [ServerMain/INFO]: Building unoptimized datafixer [16:53:34] [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' [16:53:36] [ServerMain/INFO]: Loaded 7 recipes [16:53:37] [Server thread/INFO]: Starting minecraft server version 1.19.2 [16:53:37] [Server thread/INFO]: Loading properties [16:53:38] [Server thread/INFO]: This server is running Paper version git-Paper-279 (MC: 1.19.2) (Implementing API version 1.19.2-R0.1-SNAPSHOT) (Git: a7df847) [16:53:38] [Server thread/INFO]: Server Ping Player Sample Count: 12 [16:53:38] [Server thread/INFO]: Using 4 threads for Netty based IO [16:53:38] [Server thread/INFO]: [ChunkTaskScheduler] Chunk system is using 1 I/O threads, 1 worker threads, and gen parallelism of 1 threads [16:53:38] [Server thread/INFO]: Default game type: SURVIVAL [16:53:38] [Server thread/INFO]: Generating keypair [16:53:38] [Server thread/INFO]: Starting Minecraft server on 135.148.52.118:25688 [16:53:38] [Server thread/INFO]: Using epoll channel type [16:53:38] [Server thread/INFO]: Paper: Using libdeflate (Linux x86_64) compression from Velocity. [16:53:38] [Server thread/INFO]: Paper: Using OpenSSL 1.1.x (Linux x86_64) cipher from Velocity. [16:53:39] [Server thread/INFO]: [PremiumVanish] Loading 1 libraries... please wait [16:53:39] [Server thread/INFO]: [PremiumVanish] Loaded library /home/minecraft/multicraft/servers/server1628973/default/libraries/mysql/mysql-connector-java/8.0.20/mysql-connector-java-8.0.20.jar [16:53:39] [Server thread/INFO]: [PremiumVanish] Loaded library /home/minecraft/multicraft/servers/server1628973/default/libraries/com/google/protobuf/protobuf-java/3.6.1/protobuf-java-3.6.1.jar [16:53:39] [Server thread/INFO]: [LuckPerms] Loading LuckPerms v5.4.52 [16:53:39] [Server thread/INFO]: [PlaceholderAPI] Loading PlaceholderAPI v2.11.2 [16:53:39] [Server thread/INFO]: [Vault] Loading Vault v1.7.3-CMI [16:53:39] [Server thread/INFO]: [ProtocolLib] Loading ProtocolLib v5.0.0-SNAPSHOT-b602 [16:53:39] [Server thread/WARN]: [ProtocolLib] Version (MC: 1.19.2) has not yet been tested! Proceed with caution. [16:53:40] [Server thread/INFO]: [PCGF_PluginLib] Loading PCGF_PluginLib v1.0.38-SNAPSHOT-T20220928170134 [16:53:40] [Server thread/INFO]: [WorldEdit] Loading WorldEdit v7.2.12+6240-87f4ae1 [16:53:41] [Server thread/INFO]: Got request to register class com.sk89q.worldedit.bukkit.BukkitServerInterface with WorldEdit [com.sk89q.worldedit.extension.platform.PlatformManager@50ad9420] [16:53:41] [Server thread/INFO]: [DragonSlayer] Loading DragonSlayer v0.12.2_Jeppa [16:53:41] [Server thread/INFO]: [Minepacks] Loading Minepacks v2.4.8-Release [16:53:41] [Server thread/INFO]: [Minepacks] PCGF-PluginLib installed. Switching to normal mode! [16:53:41] [Server thread/INFO]: [WorldGuard] Loading WorldGuard v7.0.8-beta-01+cbb2ba7 [16:53:41] [Server thread/INFO]: [CoreProtect] Loading CoreProtect v21.2 [16:53:41] [Server thread/INFO]: [WorldGuardExtraFlags] Loading WorldGuardExtraFlags v4.2.1 [16:53:41] [Server thread/INFO]: [Citizens] Loading Citizens v2.0.30-SNAPSHOT (build 2759) [16:53:41] [Server thread/INFO]: [ChestShop] Loading ChestShop v3.12.3-SNAPSHOT (build 365) [16:53:41] [Server thread/INFO]: [ChestShop] WorldGuard version 7.0.8-beta-01+cbb2ba7 loaded. [16:53:41] [Server thread/INFO]: [AdvancedRegionMarket] Loading AdvancedRegionMarket v3.4.3 [16:53:41] [Server thread/INFO]: [CMILib] Loading CMILib v1.2.3.7 [16:53:41] [Server thread/INFO]: [mcMMO] Loading mcMMO v2.1.217 [16:53:41] [Server thread/INFO]: [mcMMO] Registered WG flags successfully! [16:53:41] [Server thread/INFO]: [CitizensGUI] Loading CitizensGUI v1.11 [16:53:41] [Server thread/INFO]: [Jobs] Loading Jobs v5.1.1.1 [16:53:41] [Server thread/INFO]: [TreeFeller] Loading TreeFeller v1.20.1 [16:53:41] [Server thread/INFO]: [CMI] Loading CMI v9.2.6.0 [16:53:41] [Server thread/INFO]: [PremiumVanish] Loading PremiumVanish v2.7.23 [16:53:41] [Server thread/INFO]: [BattlePass] Loading BattlePass v3.12.8 [16:53:41] [Server thread/INFO]: [BeautyQuests] Loading BeautyQuests v0.20 [16:53:41] [Server thread/INFO]: [ChestProtect] Loading ChestProtect v5.7.6 [16:53:41] [Server thread/INFO]: [ChestProtect] Added flag 'ChestProtect-lock' to the plugin WorldGuard. [16:53:41] [Server thread/INFO]: Server permissions file permissions.yml is empty, ignoring it [16:53:41] [Server thread/INFO]: [LuckPerms] Enabling LuckPerms v5.4.52 [16:53:42] [Server thread/INFO]: __ [16:53:42] [Server thread/INFO]: | |__) LuckPerms v5.4.52 [16:53:42] [Server thread/INFO]: |___ | Running on Bukkit - Paper [16:53:42] [Server thread/INFO]: [16:53:42] [Server thread/INFO]: [LuckPerms] Loading configuration... [16:53:42] [Server thread/INFO]: [LuckPerms] Loading storage provider... [H2] [16:53:43] [Server thread/INFO]: [LuckPerms] Loading internal permission managers... [16:53:43] [Server thread/INFO]: [LuckPerms] Performing initial data load... [16:53:43] [Server thread/INFO]: [LuckPerms] Successfully enabled. (took 2458ms) [16:53:43] [Server thread/INFO]: [Vault] Enabling Vault v1.7.3-CMI [16:53:43] [Server thread/WARN]: [Vault] Loaded class com.Zrips.CMI.Modules.Economy.Economy from CMI v9.2.6.0 which is not a depend or softdepend of this plugin. [16:53:44] [Server thread/INFO]: [Vault] [Economy] CMI Economy found: Waiting [16:53:44] [Server thread/INFO]: [Vault] [Permission] SuperPermissions loaded as backup permission system. [16:53:44] [Server thread/INFO]: [Vault] Enabled Version 1.7.3-CMI [16:53:44] [Server thread/INFO]: [LuckPerms] Registered Vault permission & chat hook. [16:53:44] [Server thread/INFO]: [ProtocolLib] Enabling ProtocolLib v5.0.0-SNAPSHOT-b602 [16:53:44] [Server thread/INFO]: [WorldEdit] Enabling WorldEdit v7.2.12+6240-87f4ae1 [16:53:44] [Server thread/INFO]: Registering commands with com.sk89q.worldedit.bukkit.BukkitServerInterface [16:53:44] [Server thread/INFO]: WEPIF: Vault detected! Using Vault for permissions [16:53:44] [Server thread/INFO]: Using com.sk89q.worldedit.bukkit.adapter.impl.v1_19_R1.PaperweightAdapter as the Bukkit adapter [16:53:46] [Server thread/INFO]: Preparing level "Test" [16:53:47] [Server thread/INFO]: Preparing start region for dimension minecraft:overworld [16:53:47] [Server thread/INFO]: Time elapsed: 207 ms [16:53:47] [Server thread/INFO]: Preparing start region for dimension minecraft:the_nether [16:53:47] [Server thread/INFO]: Time elapsed: 103 ms [16:53:47] [Server thread/INFO]: Preparing start region for dimension minecraft:the_end [16:53:47] [Server thread/INFO]: Time elapsed: 105 ms [16:53:48] [Server thread/INFO]: [PlaceholderAPI] Enabling PlaceholderAPI v2.11.2 [16:53:48] [Server thread/INFO]: [PlaceholderAPI] Fetching available expansion information... [16:53:48] [Server thread/INFO]: [PCGF_PluginLib] Enabling PCGF_PluginLib v1.0.38-SNAPSHOT-T20220928170134 [16:53:48] [Server thread/INFO]: [PCGF_PluginLib] Config file successfully loaded. [16:53:48] [Server thread/INFO]: [PCGF_PluginLib] Item name language file successfully loaded. Language: english Author: GeorgH93 [16:53:48] [Server thread/INFO]: [PCGF_PluginLib] Loading item translations ... [16:53:48] [Server thread/INFO]: [PCGF_PluginLib] Finished loading item translations for 828 items. [16:53:48] [Server thread/INFO]: [PCGF_PluginLib] Language file successfully loaded. Language: english Author: GeorgH93 [16:53:48] [Server thread/INFO]: [PCGF_PluginLib]  PCGF_PluginLib v1.0.38-SNAPSHOT-T20220928170134 has been enabled!  :)  [16:53:48] [Server thread/INFO]: [DragonSlayer] Enabling DragonSlayer v0.12.2_Jeppa [16:53:48] [Server thread/INFO]: [DragonSlayer] Checking for updates... [16:53:48] [Server thread/INFO]: [DragonSlayer] You're running the latest plugin version! [16:53:48] [Server thread/INFO]: [DragonSlayer] Events 1.9+ enabled! [16:53:48] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: dragonslayer [0.12.2_Jeppa] [16:53:48] [Server thread/INFO]: [DragonSlayer] ProtocolLib found... [16:53:48] [Server thread/INFO]: [DragonSlayer] Vault dependency found, rewards will be enabled! [16:53:48] [Server thread/INFO]: [DragonSlayer] PlaceholderAPI found, will be used! [16:53:49] [Server thread/INFO]: [Minepacks] Enabling Minepacks v2.4.8-Release [16:53:49] [Server thread/INFO]: [Minepacks] Config file successfully loaded. [16:53:49] [Server thread/INFO]: [Minepacks] Language file successfully loaded. Language: english Author: GeorgH93 [16:53:49] [Server thread/INFO]: [at.pcgf.libs.com.zaxxer.hikari.HikariDataSource] Minepacks-Connection-Pool - Starting... [16:53:49] [Server thread/INFO]: [at.pcgf.libs.com.zaxxer.hikari.HikariDataSource] Minepacks-Connection-Pool - Start completed. [16:53:49] [Server thread/INFO]: [Minepacks]  Minepacks has been enabled!  :)  [16:53:49] [Server thread/INFO]: [WorldGuard] Enabling WorldGuard v7.0.8-beta-01+cbb2ba7 [16:53:49] [Server thread/INFO]: [WorldGuard] (Test) TNT ignition is PERMITTED. [16:53:49] [Server thread/INFO]: [WorldGuard] (Test) Lighters are PERMITTED. [16:53:49] [Server thread/INFO]: [WorldGuard] (Test) Lava fire is PERMITTED. [16:53:49] [Server thread/INFO]: [WorldGuard] (Test) Fire spread is UNRESTRICTED. [16:53:49] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Test' [16:53:49] [Server thread/INFO]: [WorldGuard] (Test_nether) TNT ignition is PERMITTED. [16:53:49] [Server thread/INFO]: [WorldGuard] (Test_nether) Lighters are PERMITTED. [16:53:49] [Server thread/INFO]: [WorldGuard] (Test_nether) Lava fire is PERMITTED. [16:53:49] [Server thread/INFO]: [WorldGuard] (Test_nether) Fire spread is UNRESTRICTED. [16:53:49] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Test_nether' [16:53:49] [Server thread/INFO]: [WorldGuard] (Test_the_end) TNT ignition is PERMITTED. [16:53:49] [Server thread/INFO]: [WorldGuard] (Test_the_end) Lighters are PERMITTED. [16:53:49] [Server thread/INFO]: [WorldGuard] (Test_the_end) Lava fire is PERMITTED. [16:53:49] [Server thread/INFO]: [WorldGuard] (Test_the_end) Fire spread is UNRESTRICTED. [16:53:49] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Test_the_end' [16:53:49] [Server thread/INFO]: [WorldGuard] Loading region data... [16:53:50] [Server thread/INFO]: [CoreProtect] Enabling CoreProtect v21.2 [16:53:50] [Server thread/INFO]: [CoreProtect] CoreProtect has been successfully enabled! [16:53:50] [Server thread/INFO]: [CoreProtect] Using SQLite for data storage. [16:53:50] [Server thread/INFO]: -------------------- [16:53:50] [Server thread/INFO]: [CoreProtect] Enjoy CoreProtect? Join our Discord! [16:53:50] [Server thread/INFO]: [CoreProtect] Discord: www.coreprotect.net/discord/ [16:53:50] [Server thread/INFO]: -------------------- [16:53:50] [Server thread/INFO]: [WorldGuardExtraFlags] Enabling WorldGuardExtraFlags v4.2.1 [16:53:50] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.TeleportOnEntryFlagHandler [16:53:50] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.TeleportOnExitFlagHandler [16:53:50] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.CommandOnEntryFlagHandler [16:53:50] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.CommandOnExitFlagHandler [16:53:50] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.ConsoleCommandOnEntryFlagHandler [16:53:50] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.ConsoleCommandOnExitFlagHandler [16:53:50] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.WalkSpeedFlagHandler [16:53:50] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.BlockedEffectsFlagHandler [16:53:50] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.GodmodeFlagHandler [16:53:50] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.GiveEffectsFlagHandler [16:53:50] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.FlyFlagHandler [16:53:50] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.FlySpeedFlagHandler [16:53:50] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.PlaySoundsFlagHandler [16:53:50] [Server thread/INFO]: [WorldGuard] Registering session handler net.goldtreeservers.worldguardextraflags.wg.handlers.GlideFlagHandler [16:53:50] [Server thread/INFO]: [Citizens] Enabling Citizens v2.0.30-SNAPSHOT (build 2759) [16:53:50] [Server thread/INFO]: [Citizens] Loading external libraries... [16:53:50] [Server thread/INFO]: [Citizens] Loaded. [16:53:51] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: citizensplaceholder [1.0.0] [16:53:51] [Server thread/INFO]: [Citizens] Loaded economy handling via Vault. [16:53:51] [Server thread/INFO]: [ChestShop] Enabling ChestShop v3.12.3-SNAPSHOT (build 365) [16:53:51] [Server thread/INFO]: [ChestShop] Loading configuration config.yml [16:53:51] [Server thread/INFO]: [ChestShop] DEBUG: true [16:53:51] [Server thread/INFO]: [ChestShop] TURN_OFF_UPDATES: true [16:53:51] [Server thread/INFO]: [ChestShop] TURN_OFF_DEV_UPDATE_NOTIFIER: false [16:53:51] [Server thread/INFO]: [ChestShop] INCLUDE_SETTINGS_IN_METRICS: true [16:53:51] [Server thread/INFO]: [ChestShop] CACHE_SIZE: 1000 [16:53:51] [Server thread/INFO]: [ChestShop] DEFAULT_LANGUAGE: "en" [16:53:51] [Server thread/INFO]: [ChestShop] USE_CLIENT_LOCALE: true [16:53:51] [Server thread/INFO]: [ChestShop] SHOP_CONTAINERS: - "CHEST" - "TRAPPED_CHEST" [16:53:51] [Server thread/INFO]: [ChestShop] SHOP_INTERACTION_INTERVAL: 250 [16:53:51] [Server thread/INFO]: [ChestShop] IGNORE_CREATIVE_MODE: true [16:53:51] [Server thread/INFO]: [ChestShop] IGNORE_ACCESS_PERMS: true [16:53:51] [Server thread/INFO]: [ChestShop] REVERSE_BUTTONS: false [16:53:51] [Server thread/INFO]: [ChestShop] SHIFT_SELLS_IN_STACKS: false [16:53:51] [Server thread/INFO]: [ChestShop] SHIFT_SELLS_EVERYTHING: false [16:53:51] [Server thread/INFO]: [ChestShop] SHIFT_ALLOWS: "ALL" [16:53:51] [Server thread/INFO]: [ChestShop] ALLOW_SIGN_CHEST_OPEN: false [16:53:51] [Server thread/INFO]: [ChestShop] SIGN_DYING: true [16:53:51] [Server thread/INFO]: [ChestShop] ALLOW_LEFT_CLICK_DESTROYING: true [16:53:51] [Server thread/INFO]: [ChestShop] REMOVE_EMPTY_SHOPS: false [16:53:51] [Server thread/INFO]: [ChestShop] REMOVE_EMPTY_CHESTS: false [16:53:51] [Server thread/INFO]: [ChestShop] REMOVE_EMPTY_WORLDS: - "world1" - "world2" [16:53:51] [Server thread/INFO]: [ChestShop] ADMIN_SHOP_NAME: "Admin Shop" [16:53:51] [Server thread/INFO]: [ChestShop] FORCE_UNLIMITED_ADMIN_SHOP: false [16:53:51] [Server thread/INFO]: [ChestShop] SERVER_ECONOMY_ACCOUNT: "" [16:53:51] [Server thread/INFO]: [ChestShop] SERVER_ECONOMY_ACCOUNT_UUID: 00000000-0000-0000-0000-000000000000 [16:53:51] [Server thread/INFO]: [ChestShop] TAX_AMOUNT: 0 [16:53:51] [Server thread/INFO]: [ChestShop] SERVER_TAX_AMOUNT: 0 [16:53:51] [Server thread/INFO]: [ChestShop] SHOP_CREATION_PRICE: 0 [16:53:51] [Server thread/INFO]: [ChestShop] SHOP_REFUND_PRICE: 0 [16:53:51] [Server thread/INFO]: [ChestShop] PRICE_PRECISION: 2 [16:53:51] [Server thread/INFO]: [ChestShop] ENSURE_CORRECT_PLAYERID: true [16:53:51] [Server thread/INFO]: [ChestShop] VALID_PLAYERNAME_REGEXP: "^\\w+$" [16:53:51] [Server thread/INFO]: [ChestShop] BLOCK_SHOPS_WITH_SELL_PRICE_HIGHER_THAN_BUY_PRICE: true [16:53:51] [Server thread/INFO]: [ChestShop] MAX_SHOP_AMOUNT: 3456 [16:53:51] [Server thread/INFO]: [ChestShop] ALLOW_MULTIPLE_SHOPS_AT_ONE_BLOCK: false [16:53:51] [Server thread/INFO]: [ChestShop] ALLOW_PARTIAL_TRANSACTIONS: true [16:53:51] [Server thread/INFO]: [ChestShop] ALLOW_AUTO_ITEM_FILL: true [16:53:51] [Server thread/INFO]: [ChestShop] BUNGEECORD_MESSAGES: false [16:53:51] [Server thread/INFO]: [ChestShop] SHOW_MESSAGE_OUT_OF_STOCK: true [16:53:51] [Server thread/INFO]: [ChestShop] SHOW_MESSAGE_FULL_SHOP: true [16:53:51] [Server thread/INFO]: [ChestShop] NOTIFICATION_MESSAGE_COOLDOWN: 10 [16:53:51] [Server thread/INFO]: [ChestShop] CSTOGGLE_TOGGLES_OUT_OF_STOCK: false [16:53:51] [Server thread/INFO]: [ChestShop] CSTOGGLE_TOGGLES_FULL_SHOP: false [16:53:51] [Server thread/INFO]: [ChestShop] SHOW_TRANSACTION_INFORMATION_CLIENT: true [16:53:51] [Server thread/INFO]: [ChestShop] SHOW_TRANSACTION_INFORMATION_OWNER: true [16:53:51] [Server thread/INFO]: [ChestShop] LOG_TO_FILE: false [16:53:51] [Server thread/INFO]: [ChestShop] LOG_TO_CONSOLE: true [16:53:51] [Server thread/INFO]: [ChestShop] LOG_ALL_SHOP_REMOVALS: true [16:53:51] [Server thread/INFO]: [ChestShop] STACK_TO_64: false [16:53:51] [Server thread/INFO]: [ChestShop] USE_BUILT_IN_PROTECTION: true [16:53:51] [Server thread/INFO]: [ChestShop] STICK_SIGNS_TO_CHESTS: false [16:53:51] [Server thread/INFO]: [ChestShop] TURN_OFF_DEFAULT_PROTECTION_WHEN_PROTECTED_EXTERNALLY: false [16:53:51] [Server thread/INFO]: [ChestShop] TURN_OFF_SIGN_PROTECTION: false [16:53:51] [Server thread/INFO]: [ChestShop] TURN_OFF_HOPPER_PROTECTION: false [16:53:51] [Server thread/INFO]: [ChestShop] CHECK_ACCESS_FOR_SHOP_USE: false [16:53:51] [Server thread/INFO]: [ChestShop] PROTECT_CHEST_WITH_LWC: false [16:53:51] [Server thread/INFO]: [ChestShop] LWC_CHEST_PROTECTION_TYPE: "PRIVATE" [16:53:51] [Server thread/INFO]: [ChestShop] PROTECT_SIGN_WITH_LWC: false [16:53:51] [Server thread/INFO]: [ChestShop] LWC_SIGN_PROTECTION_TYPE: "PRIVATE" [16:53:51] [Server thread/INFO]: [ChestShop] REMOVE_LWC_PROTECTION_AUTOMATICALLY: true [16:53:51] [Server thread/INFO]: [ChestShop] LWC_LIMITS_BLOCK_CREATION: true [16:53:51] [Server thread/INFO]: [ChestShop] WORLDGUARD_INTEGRATION: false [16:53:51] [Server thread/INFO]: [ChestShop] WORLDGUARD_USE_FLAG: true [16:53:51] [Server thread/INFO]: [ChestShop] WORLDGUARD_USE_PROTECTION: false [16:53:51] [Server thread/INFO]: [ChestShop] GRIEFPREVENTION_INTEGRATION: false [16:53:51] [Server thread/INFO]: [ChestShop] REDPROTECT_INTEGRATION: false [16:53:51] [Server thread/INFO]: [ChestShop] AUTHME_HOOK: true [16:53:51] [Server thread/INFO]: [ChestShop] AUTHME_ALLOW_UNREGISTERED: false [16:53:51] [Server thread/INFO]: [ChestShop] HEROES_EXP: 100.0 [16:53:51] [Server thread/INFO]: [ChestShop] SHOWITEM_MESSAGE: true [16:53:51] [Server thread/INFO]: [ChestShop] USE_STOCK_COUNTER: false [16:53:51] [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 [16:53:52] [Server thread/INFO]: [ChestShop] Using CMIEconomy as the Economy provider now. [16:53:52] [Server thread/INFO]: [ChestShop] Vault loaded! [16:53:52] [Server thread/INFO]: [ChestShop] Using Paper's BlockDestroyEvent instead of the BlockPhysicsEvent! [16:53:52] [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! [16:53:52] [Server thread/INFO]: [AdvancedRegionMarket] Enabling AdvancedRegionMarket v3.4.3 [16:53:52] [Server thread/INFO]: [AdvancedRegionMarket] Using WorldGuard7 adapter [16:53:52] [Server thread/INFO]: [AdvancedRegionMarket] Using WorldEdit7 adapter [16:53:52] [Server thread/INFO]: [AdvancedRegionMarket] Using MC 1.14 sign adapter [16:53:52] [Server thread/INFO]: [AdvancedRegionMarket] Regions loaded! [16:53:52] [Server thread/INFO]: [AdvancedRegionMarket] Programmed by Alex9849 [16:53:52] [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! :) [16:53:52] [Server thread/INFO]: [CMILib] Enabling CMILib v1.2.3.7 [16:53:53] [Server thread/INFO]: Server version: v1_19_R1 - 1.19.2 - paper [16:53:54] [Server thread/INFO]: CMI hooked. [16:53:54] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: cmil [1.2.3.7] [16:53:54] [Server thread/INFO]: PlaceholderAPI hooked. [16:53:54] [Server thread/INFO]: Updated (EN) language file. Took 92ms [16:53:54] [Server thread/INFO]: [mcMMO] Enabling mcMMO v2.1.217 [16:53:54] [Server thread/INFO]: [mcMMO] [config] Initializing config: config.yml [16:53:54] [Server thread/INFO]: [mcMMO] [config] Loading config from disk: config.yml [16:53:54] [Server thread/INFO]: [mcMMO] [config] Config initialized: config.yml [16:53:54] [Server thread/INFO]: [mcMMO] [Debug] No errors found in config.yml! [16:53:54] [Server thread/INFO]: [mcMMO] Loading locale from plugins/mcMMO/locales/locale_override.properties [16:53:54] [Server thread/INFO]: [mcMMO] [config] Initializing config: advanced.yml [16:53:54] [Server thread/INFO]: [mcMMO] [config] Loading config from disk: advanced.yml [16:53:54] [Server thread/INFO]: [mcMMO] [config] Config initialized: advanced.yml [16:53:54] [Server thread/INFO]: [mcMMO] [Debug] No errors found in advanced.yml! [16:53:54] [Server thread/INFO]: [mcMMO] Platform String: 1.19.2-R0.1-SNAPSHOT [16:53:54] [Server thread/INFO]: [mcMMO] Minecraft version determined to be - 1.19.2 [16:53:54] [Server thread/INFO]: [mcMMO] Loading compatibility layers... [16:53:54] [Server thread/INFO]: [mcMMO] Finished loading compatibility layers. [16:53:54] [Server thread/INFO]: [mcMMO] [config] Initializing config: persistent_data.yml [16:53:54] [Server thread/INFO]: [mcMMO] [config] Loading config from disk: persistent_data.yml [16:53:54] [Server thread/INFO]: [mcMMO] [config] Config initialized: persistent_data.yml [16:53:54] [Server thread/INFO]: [mcMMO] [Debug] No errors found in persistent_data.yml! [16:53:54] [Server thread/INFO]: [mcMMO] [config] Initializing config: upgrades_overhaul.yml [16:53:54] [Server thread/INFO]: [mcMMO] [config] Loading config from disk: upgrades_overhaul.yml [16:53:54] [Server thread/INFO]: [mcMMO] [config] Config initialized: upgrades_overhaul.yml [16:53:54] [Server thread/INFO]: [mcMMO] [config] Initializing config: treasures.yml [16:53:54] [Server thread/INFO]: [mcMMO] [config] Loading config from disk: treasures.yml [16:53:54] [Server thread/INFO]: [mcMMO] [config] Config initialized: treasures.yml [16:53:54] [Server thread/INFO]: [mcMMO] [config] Initializing config: fishing_treasures.yml [16:53:54] [Server thread/INFO]: [mcMMO] [config] Loading config from disk: fishing_treasures.yml [16:53:54] [Server thread/INFO]: [mcMMO] [config] Config initialized: fishing_treasures.yml [16:53:54] [Server thread/INFO]: [mcMMO] Registering enchantments for Fishing Book... [16:53:54] [Server thread/INFO]: [mcMMO] Loading mcMMO potions.yml File... [16:53:54] [Server thread/INFO]: [mcMMO] [config] Initializing config: coreskills.yml [16:53:54] [Server thread/INFO]: [mcMMO] [config] Loading config from disk: coreskills.yml [16:53:54] [Server thread/INFO]: [mcMMO] [config] Config initialized: coreskills.yml [16:53:55] [Server thread/INFO]: [mcMMO] [config] Initializing config: sounds.yml [16:53:55] [Server thread/INFO]: [mcMMO] [config] Loading config from disk: sounds.yml [16:53:55] [Server thread/INFO]: [mcMMO] [config] Config initialized: sounds.yml [16:53:55] [Server thread/INFO]: [mcMMO] Loading mcMMO skillranks.yml File... [16:53:57] [Server thread/INFO]: [mcMMO] [config] Initializing config: child.yml [16:53:57] [Server thread/INFO]: [mcMMO] [config] Loading config from disk: child.yml [16:53:57] [Server thread/INFO]: [mcMMO] [config] Config initialized: child.yml [16:53:57] [Server thread/INFO]: [mcMMO] [config] Initializing config: repair.vanilla.yml [16:53:57] [Server thread/INFO]: [mcMMO] [config] Loading config from disk: repair.vanilla.yml [16:53:57] [Server thread/INFO]: [mcMMO] [config] Config initialized: repair.vanilla.yml [16:53:57] [Server thread/INFO]: [mcMMO] [config] Initializing config: salvage.vanilla.yml [16:53:57] [Server thread/INFO]: [mcMMO] [config] Loading config from disk: salvage.vanilla.yml [16:53:57] [Server thread/INFO]: [mcMMO] [config] Config initialized: salvage.vanilla.yml [16:53:58] [Server thread/INFO]: [mcMMO] (plugins/mcMMO/flatfile/mcmmo.users) Validating database file.. [16:53:58] [Server thread/INFO]: [mcMMO] Enabling Acrobatics Skills [16:53:58] [Server thread/INFO]: [mcMMO] Registered subskill: Roll [16:53:58] [Server thread/INFO]: [mcMMO] [config] Initializing config: experience.yml [16:53:58] [Server thread/INFO]: [mcMMO] [config] Loading config from disk: experience.yml [16:53:58] [Server thread/INFO]: [mcMMO] [config] Config initialized: experience.yml [16:53:58] [Server thread/INFO]: [mcMMO] 0 entries in mcMMO World Blacklist [16:53:58] [Server thread/INFO]: [mcMMO] [config] Initializing config: chat.yml [16:53:58] [Server thread/INFO]: [mcMMO] [config] Loading config from disk: chat.yml [16:53:58] [Server thread/INFO]: [mcMMO] [config] Config initialized: chat.yml [16:53:58] [Server thread/INFO]: [CitizensGUI] Enabling CitizensGUI v1.11 [16:53:58] [Server thread/INFO]: [Jobs] Enabling Jobs v5.1.1.1 [16:53:58] [Server thread/INFO]: ------------- Jobs ------------- [16:53:58] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: jobsr [5.1.1.1] [16:53:58] [Server thread/INFO]: PlaceholderAPI hooked. [16:53:58] [Server thread/INFO]: Connected to database (SqLite) [16:53:58] [Server thread/INFO]: Loaded 8 titles [16:53:58] [Server thread/INFO]: Loaded 69 protected blocks timers [16:53:59] [Server thread/INFO]: Loaded 1282 custom item names [16:53:59] [Server thread/INFO]: Loaded 79 custom entity names [16:53:59] [Server thread/INFO]: Loaded 2 custom MythicMobs names [16:53:59] [Server thread/INFO]: Loaded 38 custom enchant names [16:53:59] [Server thread/INFO]: Loaded 21 custom enchant names [16:53:59] [Server thread/INFO]: Loaded 16 custom color names [16:53:59] [Server thread/INFO]: Loaded 4 shop items [16:53:59] [Server thread/INFO]: Loaded 1 quests for Fisherman [16:53:59] [Server thread/INFO]: Loaded 1 quests for Enchanter [16:53:59] [Server thread/INFO]: Loaded 1 quests for Builder [16:53:59] [Server thread/INFO]: Loaded 1 quests for Brewer [16:53:59] [Server thread/INFO]: Loaded 1 quests for Miner [16:53:59] [Server thread/INFO]: Loaded 1 quests for Woodcutter [16:53:59] [Server thread/INFO]: Loaded 1 quests for Hunter [16:53:59] [Server thread/INFO]: Loaded 1 quests for Explorer [16:53:59] [Server thread/INFO]: Loaded 1 quests for Crafter [16:53:59] [Server thread/INFO]: Loaded 1 quests for Digger [16:53:59] [Server thread/INFO]: Loaded 1 quests for Weaponsmith [16:53:59] [Server thread/INFO]: Loaded 1 quests for Farmer [16:53:59] [Server thread/INFO]: Loaded 12 jobs [16:53:59] [Server thread/INFO]: Loaded 0 boosted items [16:53:59] [Server thread/INFO]: Loaded 4 furnace for reassigning. [16:53:59] [Server thread/INFO]: Loaded 1 brewing for reassigning. [16:53:59] [Jobs-DatabaseSaveTask/INFO]: Started database save task. [16:53:59] [Jobs-BufferedPaymentThread/INFO]: Started buffered payment thread. [16:53:59] [Server thread/INFO]: Preloaded 5 players data in 0.0 [16:53:59] [Server thread/INFO]: WorldGuard detected. [16:53:59] [Server thread/INFO]: mcMMO2.1.217 was found - Enabling capabilities. [16:53:59] [Server thread/INFO]: Registered McMMO 2.x listener [16:53:59] [Server thread/INFO]: Loading explorer data [16:53:59] [Server thread/INFO]: Loaded explorer data (1201) in 9 ms [16:53:59] [Server thread/INFO]: Plugin has been enabled successfully. [16:53:59] [Server thread/INFO]: ------------------------------------ [16:53:59] [Server thread/INFO]: [TreeFeller] Enabling TreeFeller v1.20.1 [16:53:59] [Server thread/INFO]: [TreeFeller] TreeFeller has been enabled! (Version 1.20.1) by ThizThizzyDizzy [16:53:59] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: treefeller [1.0.0] [16:53:59] [Server thread/INFO]: [TreeFeller] Server version: 1_19_R1 [16:53:59] [Server thread/INFO]: [TreeFeller] Loaded global values: [16:53:59] [Server thread/INFO]: [TreeFeller] - Startup Logs: true [16:53:59] [Server thread/INFO]: [TreeFeller] - Default Enabled: true [16:53:59] [Server thread/INFO]: [TreeFeller] - Scan Distance: 256 [16:53:59] [Server thread/INFO]: [TreeFeller] - Leaf Detect Range: 6 [16:53:59] [Server thread/INFO]: [TreeFeller] - Leaf Break Range: 6 [16:53:59] [Server thread/INFO]: [TreeFeller] - Required Logs: 4 [16:53:59] [Server thread/INFO]: [TreeFeller] - Required Leaves: 10 [16:53:59] [Server thread/INFO]: [TreeFeller] - Max Logs: 250 [16:53:59] [Server thread/INFO]: [TreeFeller] - Max Height: 5 [16:53:59] [Server thread/INFO]: [TreeFeller] - Allow Partial: false [16:53:59] [Server thread/INFO]: [TreeFeller] - Player Leaves: false [16:53:59] [Server thread/INFO]: [TreeFeller] - Diagonal Leaves: false [16:53:59] [Server thread/INFO]: [TreeFeller] - Ignore Leaf Data: false [16:53:59] [Server thread/INFO]: [TreeFeller] - Require Cross Section: false [16:53:59] [Server thread/INFO]: [TreeFeller] - Force Distance Check: false [16:53:59] [Server thread/INFO]: [TreeFeller] - Max Horizontal Trunk Pillar Length: 6 [16:53:59] [Server thread/INFO]: [TreeFeller] - Max Trunks: 1 [16:53:59] [Server thread/INFO]: [TreeFeller] - Cutting Animation: false [16:53:59] [Server thread/INFO]: [TreeFeller] - Anim Delay: 1 [16:53:59] [Server thread/INFO]: [TreeFeller] - Replant Saplings: true [16:53:59] [Server thread/INFO]: [TreeFeller] - Use Inventory Saplings: false [16:53:59] [Server thread/INFO]: [TreeFeller] - Spawn Saplings: 0 [16:53:59] [Server thread/INFO]: [TreeFeller] - Sapling Timeout: 50 [16:53:59] [Server thread/INFO]: [TreeFeller] - Grass: [PODZOL, DIRT, GRASS_BLOCK] [16:53:59] [Server thread/INFO]: [TreeFeller] - Root Distance: 6 [16:53:59] [Server thread/INFO]: [TreeFeller] - Log Behavior: BREAK [16:53:59] [Server thread/INFO]: [TreeFeller] - Leaf Behavior: BREAK [16:53:59] [Server thread/INFO]: [TreeFeller] - Fall Hurt Amount: 2.0 [16:53:59] [Server thread/INFO]: [TreeFeller] - Fall Hurt Max: 40 [16:53:59] [Server thread/INFO]: [TreeFeller] - Directional Fall Behavior: RANDOM [16:53:59] [Server thread/INFO]: [TreeFeller] - Overridables: [FERN, GRASS, TALL_GRASS, SEAGRASS, CAVE_AIR, LARGE_FERN, WATER, TALL_SEAGRASS, AIR] [16:53:59] [Server thread/INFO]: [TreeFeller] - Lock Fall Cardinal: false [16:53:59] [Server thread/INFO]: [TreeFeller] - Directional Fall Velocity: 0.35 [16:53:59] [Server thread/INFO]: [TreeFeller] - Vertical Fall Velocity: 0.05 [16:53:59] [Server thread/INFO]: [TreeFeller] - Explosive Fall Velocity: 0.0 [16:53:59] [Server thread/INFO]: [TreeFeller] - Random Fall Velocity: 0.0 [16:53:59] [Server thread/INFO]: [TreeFeller] - Respect Unbreaking: true [16:53:59] [Server thread/INFO]: [TreeFeller] - Respect Unbreakable: true [16:53:59] [Server thread/INFO]: [TreeFeller] - Damage Mult: 1.0 [16:53:59] [Server thread/INFO]: [TreeFeller] - Stacked Tools: false [16:53:59] [Server thread/INFO]: [TreeFeller] - Leaf Fortune: true [16:53:59] [Server thread/INFO]: [TreeFeller] - Leaf Silk Touch: false [16:53:59] [Server thread/INFO]: [TreeFeller] - Log Fortune: true [16:53:59] [Server thread/INFO]: [TreeFeller] - Log Silk Touch: true [16:53:59] [Server thread/INFO]: [TreeFeller] - Leave Stump: false [16:53:59] [Server thread/INFO]: [TreeFeller] - Rotate Logs: true [16:53:59] [Server thread/INFO]: [TreeFeller] - Drop Conversions: {OAK_WOOD=OAK_LOG, JUNGLE_WOOD=JUNGLE_LOG, ACACIA_WOOD=ACACIA_LOG, BIRCH_WOOD=BIRCH_LOG, DARK_OAK_WOOD=DARK_OAK_LOG, CRIMSON_HYPHAE=CRIMSON_STEM, WARPED_HYPHAE=WARPED_STEM, SPRUCE_WOOD=SPRUCE_LOG} [16:53:59] [Server thread/INFO]: [TreeFeller] - Leaf Drop Chance: 1.0 [16:53:59] [Server thread/INFO]: [TreeFeller] - Log Drop Chance: 1.0 [16:53:59] [Server thread/INFO]: [TreeFeller] - Effects: [] [16:53:59] [Server thread/INFO]: [TreeFeller] - Consumed Food Base: 0.0 [16:53:59] [Server thread/INFO]: [TreeFeller] - Consumed Food Logs: 0.0 [16:53:59] [Server thread/INFO]: [TreeFeller] - Consumed Food Leaves: 0.0 [16:53:59] [Server thread/INFO]: [TreeFeller] - Consumed Health Base: 0.0 [16:53:59] [Server thread/INFO]: [TreeFeller] - Consumed Health Logs: 0.0 [16:53:59] [Server thread/INFO]: [TreeFeller] - Consumed Health Leaves: 0.0 [16:53:59] [Server thread/INFO]: [TreeFeller] - Prevent Breakage: false [16:53:59] [Server thread/INFO]: [TreeFeller] - Enable Adventure: false [16:53:59] [Server thread/INFO]: [TreeFeller] - Enable Survival: true [16:53:59] [Server thread/INFO]: [TreeFeller] - Enable Creative: false [16:53:59] [Server thread/INFO]: [TreeFeller] - With Sneak: false [16:53:59] [Server thread/INFO]: [TreeFeller] - Without Sneak: true [16:53:59] [Server thread/INFO]: [TreeFeller] - World Blacklist: false [16:53:59] [Server thread/INFO]: [TreeFeller] - Cascade: false [16:53:59] [Server thread/INFO]: [TreeFeller] - Parallel Cascade Limit: 1 [16:53:59] [Server thread/INFO]: [TreeFeller] - Cascade Check Limit: 64 [16:53:59] [Server thread/INFO]: [TreeFeller] - MMOCore Trunk XP: {global=1.0} [16:53:59] [Server thread/INFO]: [TreeFeller] - MMOCore Leaves XP: {global=0.0} [16:53:59] [Server thread/INFO]: [TreeFeller] - Compatibility MMOCore: true [16:53:59] [Server thread/INFO]: [TreeFeller] - Compatibility Jobs: true [16:53:59] [Server thread/INFO]: [TreeFeller] - MCMMO Double Drops: true [16:53:59] [Server thread/INFO]: [TreeFeller] - Compatibility mcMMO: true [16:53:59] [Server thread/INFO]: [TreeFeller] - Compatibility mcMMO: true [16:53:59] [Server thread/INFO]: [TreeFeller] - Compatibility CoreProtect: true [16:53:59] [Server thread/INFO]: [TreeFeller] - Compatibility WorldGuard: true [16:53:59] [Server thread/INFO]: [TreeFeller] - Compatibility GriefPrevention: true [16:53:59] [Server thread/INFO]: [TreeFeller] - Compatibility Towny: true [16:53:59] [Server thread/INFO]: [TreeFeller] - OreRegenerator Regen Delay: 1200 [16:53:59] [Server thread/INFO]: [TreeFeller] - Compatibility OreRegenerator: false [16:53:59] [Server thread/INFO]: [TreeFeller] - Compatibility Drop2Inventory: true [16:53:59] [Server thread/INFO]: [TreeFeller] - EcoSkills Trunk Woodcutting XP: 1.0 [16:53:59] [Server thread/INFO]: [TreeFeller] - EcoSkills Trunk Mining XP: 0.0 [16:53:59] [Server thread/INFO]: [TreeFeller] - EcoSkills Leaf Woodcutting XP: 0.0 [16:53:59] [Server thread/INFO]: [TreeFeller] - EcoSkills Leaf Mining XP: 0.0 [16:53:59] [Server thread/INFO]: [TreeFeller] - EcoSkills Apply Modifiers: true [16:53:59] [Server thread/INFO]: [TreeFeller] - Compatibility EcoSkills: true [16:53:59] [Server thread/INFO]: [TreeFeller] - Compatibility LogBlock: true [16:53:59] [Server thread/INFO]: [TreeFeller] - Compatibility Lands: true [16:53:59] [Server thread/INFO]: [TreeFeller] - Compatibility PlaceholderAPI: true [16:53:59] [Server thread/INFO]: [TreeFeller] - Compatibility SaberFactions: true [16:53:59] [Server thread/INFO]: [TreeFeller] - AureliumSkills Trunk XP: {foraging=1.0} [16:53:59] [Server thread/INFO]: [TreeFeller] - AureliumSkills Leaves XP: {foraging=0.0} [16:53:59] [Server thread/INFO]: [TreeFeller] - AureliumSkills Apply Modifiers: true [16:53:59] [Server thread/INFO]: [TreeFeller] - Compatibility AureliumSkills: true [16:53:59] [Server thread/INFO]: [TreeFeller] Loaded Tree! [16:53:59] [Server thread/INFO]: [TreeFeller] - Trunk: OAK_LOG, OAK_WOOD [16:53:59] [Server thread/INFO]: [TreeFeller] - Leaves: OAK_LEAVES [16:53:59] [Server thread/INFO]: [TreeFeller] - Sapling: [OAK_SAPLING] [16:53:59] [Server thread/INFO]: [TreeFeller] - Max Saplings: 1 [16:53:59] [Server thread/INFO]: [TreeFeller] Loaded Tree! [16:53:59] [Server thread/INFO]: [TreeFeller] - Trunk: BIRCH_LOG, BIRCH_WOOD [16:53:59] [Server thread/INFO]: [TreeFeller] - Leaves: BIRCH_LEAVES [16:53:59] [Server thread/INFO]: [TreeFeller] - Sapling: [BIRCH_SAPLING] [16:53:59] [Server thread/INFO]: [TreeFeller] - Max Saplings: 1 [16:53:59] [Server thread/INFO]: [TreeFeller] Loaded Tree! [16:53:59] [Server thread/INFO]: [TreeFeller] - Trunk: SPRUCE_LOG, SPRUCE_WOOD [16:53:59] [Server thread/INFO]: [TreeFeller] - Leaves: SPRUCE_LEAVES [16:53:59] [Server thread/INFO]: [TreeFeller] - Sapling: [SPRUCE_SAPLING] [16:53:59] [Server thread/INFO]: [TreeFeller] - Max Saplings: 4 [16:53:59] [Server thread/INFO]: [TreeFeller] Loaded Tree! [16:53:59] [Server thread/INFO]: [TreeFeller] - Trunk: JUNGLE_LOG, JUNGLE_WOOD [16:53:59] [Server thread/INFO]: [TreeFeller] - Leaves: JUNGLE_LEAVES [16:53:59] [Server thread/INFO]: [TreeFeller] - Sapling: [JUNGLE_SAPLING] [16:53:59] [Server thread/INFO]: [TreeFeller] - Max Saplings: 4 [16:53:59] [Server thread/INFO]: [TreeFeller] Loaded Tree! [16:53:59] [Server thread/INFO]: [TreeFeller] - Trunk: DARK_OAK_LOG, DARK_OAK_WOOD [16:53:59] [Server thread/INFO]: [TreeFeller] - Leaves: DARK_OAK_LEAVES [16:53:59] [Server thread/INFO]: [TreeFeller] - Sapling: [DARK_OAK_SAPLING] [16:53:59] [Server thread/INFO]: [TreeFeller] - Max Saplings: 4 [16:53:59] [Server thread/INFO]: [TreeFeller] Loaded Tree! [16:53:59] [Server thread/INFO]: [TreeFeller] - Trunk: ACACIA_LOG, ACACIA_WOOD [16:53:59] [Server thread/INFO]: [TreeFeller] - Leaves: ACACIA_LEAVES [16:53:59] [Server thread/INFO]: [TreeFeller] - Sapling: [ACACIA_SAPLING] [16:53:59] [Server thread/INFO]: [TreeFeller] - Max Saplings: 1 [16:53:59] [Server thread/INFO]: [TreeFeller] Loaded Tree! [16:53:59] [Server thread/INFO]: [TreeFeller] - Trunk: OAK_LOG, OAK_WOOD [16:53:59] [Server thread/INFO]: [TreeFeller] - Leaves: AZALEA_LEAVES, FLOWERING_AZALEA_LEAVES [16:53:59] [Server thread/INFO]: [TreeFeller] - Diagonal Leaves: true [16:53:59] [Server thread/INFO]: [TreeFeller] - Sapling: [AZALEA, FLOWERING_AZALEA] [16:53:59] [Server thread/INFO]: [TreeFeller] - Max Saplings: 1 [16:53:59] [Server thread/INFO]: [TreeFeller] Loaded Tree! [16:53:59] [Server thread/INFO]: [TreeFeller] - Trunk: MANGROVE_LOG, MANGROVE_WOOD [16:53:59] [Server thread/INFO]: [TreeFeller] - Leaves: MANGROVE_ROOTS, MANGROVE_LEAVES [16:53:59] [Server thread/INFO]: [TreeFeller] - Leaf Detect Range: 16 [16:53:59] [Server thread/INFO]: [TreeFeller] - Leaf Break Range: 16 [16:53:59] [Server thread/INFO]: [TreeFeller] - Required Logs: 3 [16:53:59] [Server thread/INFO]: [TreeFeller] - Diagonal Leaves: true [16:53:59] [Server thread/INFO]: [TreeFeller] - Max Horizontal Trunk Pillar Length: 16 [16:53:59] [Server thread/INFO]: [TreeFeller] - Max Trunks: 16 [16:53:59] [Server thread/INFO]: [TreeFeller] - Sapling: [MANGROVE_PROPAGULE] [16:53:59] [Server thread/INFO]: [TreeFeller] - Max Saplings: 1 [16:53:59] [Server thread/INFO]: [TreeFeller] - Roots: [MANGROVE_ROOTS] [16:53:59] [Server thread/INFO]: [TreeFeller] - Root Distance: 16 [16:53:59] [Server thread/INFO]: [TreeFeller] Loaded Tree! [16:53:59] [Server thread/INFO]: [TreeFeller] - Trunk: CRIMSON_STEM, CRIMSON_HYPHAE [16:53:59] [Server thread/INFO]: [TreeFeller] - Leaves: NETHER_WART_BLOCK, SHROOMLIGHT [16:53:59] [Server thread/INFO]: [TreeFeller] - Leaf Detect Range: 8 [16:53:59] [Server thread/INFO]: [TreeFeller] - Leaf Break Range: 8 [16:53:59] [Server thread/INFO]: [TreeFeller] - Diagonal Leaves: true [16:53:59] [Server thread/INFO]: [TreeFeller] - Sapling: [CRIMSON_FUNGUS] [16:53:59] [Server thread/INFO]: [TreeFeller] - Max Saplings: 1 [16:53:59] [Server thread/INFO]: [TreeFeller] - Grass: [CRIMSON_NYLIUM] [16:53:59] [Server thread/INFO]: [TreeFeller] Loaded Tree! [16:53:59] [Server thread/INFO]: [TreeFeller] - Trunk: WARPED_STEM, WARPED_HYPHAE [16:53:59] [Server thread/INFO]: [TreeFeller] - Leaves: WARPED_WART_BLOCK, SHROOMLIGHT [16:53:59] [Server thread/INFO]: [TreeFeller] - Leaf Detect Range: 8 [16:53:59] [Server thread/INFO]: [TreeFeller] - Leaf Break Range: 8 [16:53:59] [Server thread/INFO]: [TreeFeller] - Diagonal Leaves: true [16:53:59] [Server thread/INFO]: [TreeFeller] - Sapling: [WARPED_FUNGUS] [16:53:59] [Server thread/INFO]: [TreeFeller] - Max Saplings: 1 [16:53:59] [Server thread/INFO]: [TreeFeller] - Grass: [WARPED_NYLIUM] [16:53:59] [Server thread/INFO]: [TreeFeller] Loaded tool: WOODEN_AXE [16:53:59] [Server thread/INFO]: [TreeFeller] Loaded tool: STONE_AXE [16:53:59] [Server thread/INFO]: [TreeFeller] Loaded tool: IRON_AXE [16:53:59] [Server thread/INFO]: [TreeFeller] Loaded tool: GOLDEN_AXE [16:53:59] [Server thread/INFO]: [TreeFeller] Loaded tool: DIAMOND_AXE [16:53:59] [Server thread/INFO]: [TreeFeller] Loaded tool: NETHERITE_AXE [16:53:59] [Server thread/INFO]: [CMI] Enabling CMI v9.2.6.0 [16:53:59] [Server thread/INFO]: ┏━━━┓ ┏━┓┏━┓ ┏━━┓ [16:53:59] [Server thread/INFO]: ┃┏━┓┃ ┃ ┗┛ ┃ ┗┫┣┛ [16:53:59] [Server thread/INFO]: ┃┃ ┗┛ ┃┏┓┏┓┃ ┃┃ [16:53:59] [Server thread/INFO]: ┃┃ ┏┓ ┃┃┃┃┃┃ ┃┃ [16:53:59] [Server thread/INFO]: ┃┗━┛┃ ┃┃┃┃┃┃ ┏┫┣┓ [16:53:59] [Server thread/INFO]: ┗━━━┛ ┗┛┗┛┗┛ ┗━━┛ [16:53:59] [Server thread/INFO]: _______________________________________________________ [16:53:59] [Server thread/INFO]: Integrating PaperSpigot async methods [16:53:59] [Server thread/INFO]: Citizens found. [16:53:59] [Server thread/INFO]: 57 Enabled and 0 Disabled modules [16:54:00] [Server thread/INFO]: Permission plugin: LuckPerms5.4.52 [16:54:00] [Server thread/INFO]: Initialized Cipher256 AES [16:54:00] [Server thread/INFO]: Loaded (60) regular alias into memory. Took 74ms [16:54:00] [Server thread/INFO]: Loaded (1) custom text's into memory. Took 0ms [16:54:00] [Server thread/INFO]: 3.36.0 data base type detected [16:54:00] [Server thread/INFO]: Started SqLite data base. Took 154ms [16:54:00] [Server thread/INFO]: Vault was found - Enabling capabilities. Economy: CMIEconomy [16:54:00] [Server thread/INFO]: Loaded (5) warning categories into memory. Took 1ms [16:54:00] [Server thread/INFO]: Loaded (3) warning commands into memory. Took 0ms [16:54:00] [Server thread/INFO]: Loaded (142) custom mob heads into memory. Took 12ms [16:54:00] [Server thread/INFO]: Loaded (0) cooldowns into memory. Took 22ms [16:54:00] [Server thread/INFO]: Initializing BungeeCord [16:54:01] [Server thread/INFO]: Loaded (5) kits into memory. Took 796ms [16:54:01] [Server thread/INFO]: Loaded (7) ranks into memory. Took 9ms [16:54:01] [Server thread/INFO]: Loaded (8) playtime rewards into memory. Took 1ms [16:54:01] [Server thread/INFO]: Loaded (5) player data into memory. Took 6ms [16:54:01] [Server thread/INFO]: Loaded (0) playtime records into memory. Took 3ms [16:54:01] [Server thread/INFO]: Loaded (0) playtime reward records into memory. Took 0ms [16:54:01] [Server thread/INFO]: Loaded (0) custom alias into memory. Took 1ms [16:54:01] [Server thread/INFO]: Registered events. Took 114ms [16:54:01] [Server thread/INFO]: Loaded (0) event action commands into memory. Took 4ms [16:54:02] [Server thread/INFO]: Updated (EN) language file. Took 198ms [16:54:02] [Server thread/WARN]: [CMILib] Loaded class com.Zrips.CMI.Containers.Snd from CMI v9.2.6.0 which is not a depend or softdepend of this plugin. [16:54:02] [Server thread/INFO]: Loaded (667) worth values into memory. Took 93ms [16:54:02] [Server thread/INFO]: Loaded (1) warps into memory. Took 1ms [16:54:02] [Server thread/INFO]: Vault permissions was found - Enabling capabilities. [16:54:02] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: cmi [9.2.6.0] [16:54:02] [Server thread/INFO]: PlaceholderAPI hooked. [16:54:02] [Server thread/INFO]: PlaceholderAPI was found - Enabling capabilities. [16:54:02] [Server thread/INFO]: McMMO was found - Enabling capabilities. [16:54:02] [Server thread/INFO]: Jobs was found - Enabling capabilities. [16:54:02] [Server thread/INFO]: Starting world timer. [16:54:02] [Server thread/INFO]: Initializing world manager. [16:54:02] [Server thread/INFO]: Loaded (4) schedules into memory. Took 4ms [16:54:02] [Server thread/INFO]: Loaded GeoIP [16:54:02] [Server thread/INFO]: Loaded (0) skin cache entries into memory. Took 1ms [16:54:02] [Server thread/INFO]: Loaded (0) ArmorStand templates into memory. Took 0ms [16:54:02] [Server thread/INFO]: Version 9.2.6.0 has been enabled [16:54:02] [Server thread/INFO]: ‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾‾ [16:54:02] [Server thread/INFO]: [Vault][Economy] CMI Economy hooked. [16:54:02] [Server thread/INFO]: [PremiumVanish] Enabling PremiumVanish v2.7.23 [16:54:02] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: premiumvanish [2.7.23] [16:54:02] [Server thread/INFO]: [PremiumVanish] Hooked into PlaceholderAPI [16:54:02] [Server thread/INFO]: [PremiumVanish] Hooked into Citizens [16:54:02] [Server thread/INFO]: [PremiumVanish] Hooked into CMI [16:54:02] [Server thread/INFO]: [BattlePass] Enabling BattlePass v3.12.8 [16:54:02] [Server thread/INFO]: [BattlePass] Finished loading the week-2 quests. All quests loaded successfully. [16:54:02] [Server thread/INFO]: [BattlePass] Finished loading the week-1 quests. All quests loaded successfully. [16:54:02] [Server thread/INFO]: [BattlePass] Finished loading the week-3 quests. All quests loaded successfully. [16:54:02] [Server thread/INFO]: [BattlePass] Finished loading the week-4 quests. All quests loaded successfully. [16:54:02] [Server thread/INFO]: [BattlePass] Finished loading the daily quests. All quests loaded successfully. [16:54:02] [Server thread/INFO]: [BattlePass] Successfully loaded the pass type with the id: free [16:54:02] [Server thread/INFO]: [BattlePass] Successfully loaded the pass type with the id: premium [16:54:02] [Server thread/INFO]: [BattlePass] Using internal version as PluginVersion{major=2, minor=1, bugfix=217} for loading McMMO. [16:54:02] [Server thread/INFO]: [BattlePass] Hooked into McMMO [16:54:02] [Server thread/INFO]: [BattlePass] Using internal version as PluginVersion{major=3, minor=12, bugfix=3} for loading ChestShop. [16:54:02] [Server thread/INFO]: [BattlePass] Hooked into ChestShop [16:54:02] [Server thread/INFO]: [BattlePass] Using internal version as PluginVersion{major=3, minor=12, bugfix=3} for loading ChestShop. [16:54:02] [Server thread/INFO]: [BattlePass] ChestShop was present but its version is not supported. [16:54:02] [Server thread/INFO]: [BattlePass] Hooked into Citizens [16:54:02] [Server thread/INFO]: [BattlePass] Hooked into Jobs [16:54:02] [Server thread/INFO]: [BattlePass] Register PlaceholderAPI placeholders [16:54:02] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: battlepass [1.1] [16:54:02] [Server thread/INFO]: [BeautyQuests] Enabling BeautyQuests v0.20 [16:54:02] [Server thread/INFO]: [BeautyQuests] ------------ BeautyQuests ------------ [16:54:02] [Server thread/INFO]: [BeautyQuests] Loaded valid Minecraft version 1_19_R1. [16:54:02] [Server thread/INFO]: [BeautyQuests] Loaded language en_US (0.054s)! [16:54:02] [Server thread/INFO]: [BeautyQuests] Loaded start particles: REDSTONE in shape POINT with color R255 G255 B0 [16:54:02] [Server thread/INFO]: [BeautyQuests] Loaded talk particles: VILLAGER_HAPPY in shape BAR [16:54:02] [Server thread/INFO]: [BeautyQuests] Loaded next particles: SMOKE_NORMAL in shape SPOT [16:54:03] [Server thread/INFO]: [WorldGuard] Registering session handler fr.skytasul.quests.utils.compatibility.worldguard.WorldGuardEntryHandler [16:54:03] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: beautyquests [0.20] [16:54:03] [Server thread/INFO]: [BeautyQuests] Placeholders registered ! [16:54:03] [Server thread/INFO]: [ChestProtect] Enabling ChestProtect v5.7.6 [16:54:03] [Server thread/INFO]: [ChestProtect] Version: 5.7.6 Previous: 5.7.6 [16:54:03] [Server thread/INFO]: [ChestProtect] Server: 1.19.x running Paper [16:54:03] [Server thread/INFO]: [ChestProtect] Licensed to: 1681654 [16:54:03] [Server thread/INFO]: [ChestProtect] Experiencing issues or having questions? Join our Discord! [16:54:03] [Server thread/INFO]: [ChestProtect] Discord: https://discord.gg/B4MAJVk [16:54:03] [Server thread/INFO]: [ChestProtect] Wiki: https://github.com/Angeschossen/ChestProtect/wiki [16:54:03] [Server thread/INFO]: [ChestProtect] [16:54:03] [Server thread/INFO]: [ChestProtect] [Integrations] Successfully integrated CMI as hologram manager. [16:54:03] [Server thread/INFO]: [ChestProtect] Setting up general tables... [16:54:03] [Server thread/INFO]: [ChestProtect] Successfully connected to SQL (SQLite) database. [16:54:03] [Server thread/INFO]: [PlaceholderAPI] Placeholder expansion registration initializing... [16:54:03] [Server thread/INFO]: Running delayed init tasks [16:54:04] [Server thread/INFO]: [CoreProtect] WorldEdit logging successfully initialized. [16:54:04] [Server thread/INFO]: [Jobs] Successfully linked with Vault. [16:54:04] [Craft Scheduler Thread - 12 - Vault/INFO]: [Vault] Checking for Updates ... [16:54:04] [Server thread/INFO]: [Citizens] Loaded 0 NPCs. [16:54:04] [Server thread/INFO]: [ChestProtect] [Integrations] Successfully integrated PlaceholderAPI for parsing placeholders from 3rd party plugins in chat messages and GUI menus [16:54:04] [Server thread/INFO]: [ChestProtect] [Integrations] Successfully integrated LuckPerms for offline permission lookups. [16:54:04] [Server thread/INFO]: [ChestProtect] Successfully added region provider: WorldGuard Type: SERVER [16:54:04] [Server thread/WARN]: [PlaceholderAPI] Loaded class net.luckperms.api.LuckPerms from LuckPerms v5.4.52 which is not a depend or softdepend of this plugin. [16:54:04] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: luckperms [5.1-R2] [16:54:04] [Server thread/INFO]: 1 placeholder hook(s) registered! [16:54:04] [Server thread/INFO]: [BeautyQuests] You are using the latest version of BeautyQuests. [16:54:04] [Server thread/INFO]: Done (26.196s)! For help, type "help" [16:54:04] [Server thread/INFO]: Timings Reset [16:54:04] [Craft Scheduler Thread - 12 - Vault/INFO]: [Vault] No new version available [16:54:04] [Server thread/INFO]: [BeautyQuests] 0 quests loaded (0.018s)! [16:54:04] [Server thread/INFO]: [BeautyQuests] Periodic saves task started (18000 ticks). Task ID: 87 [16:54:05] [Server thread/INFO]: [ChestProtect] [Integrations] Successfully integrated Vault economy into economy system. Name: CMIEconomy [16:54:05] [Server thread/INFO]: [PlaceholderAPI] Successfully registered expansion: chestprotect [5.7.6] [16:54:05] [Server thread/INFO]: [ChestProtect] [Integrations] Successfully integrated PlaceholderAPI into chat system. [16:54:08] [User Authenticator #0/INFO]: UUID of player XITrickyIX is 6b3fb336-58c6-4d98-b06b-227e4e93e417 [16:54:08] [Server thread/INFO]: XITrickyIX joined the game [16:54:09] [Server thread/INFO]: XITrickyIX[/68.9.57.254:54640] logged in with entity id 209 at ([Test]-419.7174793349582, 65.0, 169.72983328459492) [16:54:09] [Thread-20/INFO]: [ChestProtect] You're using the latest version. [16:54:22] [Server thread/INFO]: XITrickyIX issued server command: /deop XITrickyIX [16:54:22] [Server thread/INFO]: [XITrickyIX: Made XITrickyIX no longer a server operator] [16:54:36] [Craft Scheduler Thread - 7 - ChestShop/INFO]: [ChestShop] XITrickyIX created a shop - 33Stick - B 1 - at [Test] -425, 63, 177 [16:54:52] [Server thread/INFO]: Made XITrickyIX a server operator [16:55:04] [Server thread/INFO]: XITrickyIX issued server command: /rg i [16:55:12] [Server thread/INFO]: XITrickyIX lost connection: Disconnected [16:55:12] [Server thread/INFO]: XITrickyIX left the game ```

What other plugins are you running?

CMI-9.2.6.0 WG-7.0.8 WGEF-4.2.1 WE-7.2.12 JOBS-5.1.1.1 MCMMO-2.1.217 LuckPerms-5.4.54

Agreements

Additional context

here is my Verbose Viewer link for when i was making a ChestShop https://luckperms.net/verbose/bmfLUbPfn0

Phoenix616 commented 1 year ago

Please enable DEBUG in the config, restart the server, try it again and then provide your full server log.

Also please provide a link to LuckPerms' verbose web viewer from when you create the shop. You might simply have some bypass permission.

XITrickyIX commented 1 year ago

Please enable DEBUG in the config, restart the server, try it again and then provide your full server log.

Also please provide a link to LuckPerms' verbose web viewer from when you create the shop. You might simply have some bypass permission.

alright i edited all you asked above. log and Verbose link is there

Phoenix616 commented 1 year ago

Thanks, unfortunately it looks like your log is cut off at the start please also provide the part that has all the server startup information.

XITrickyIX commented 1 year ago

Thanks, unfortunately it looks like your log is cut off at the start please also provide the part that has all the server startup information.

Sorry about that. Server Log is updated above now.

Phoenix616 commented 1 year ago

Just noticed that you have WORLDGUARD_INTEGRATION completely disabled in your config. That's most likely the source of your issue.

XITrickyIX commented 1 year ago

Just noticed that you have WORLDGUARD_INTEGRATION completely disabled in your config. That's most likely the source of your issue.

so i have turned that one before and it didnt help at all so i turned it back off but i just now turned it back on and it seems to be working now.. idk why it didnt work then and now its working. Anyways its working as it should now so thanks for the help :)