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

Double Strength Effect #781

Open
Greenfoot5 opened this issue Feb 8, 2025 · 1 comment
Open

Double Strength Effect #781

Greenfoot5 opened this issue Feb 8, 2025 · 1 comment
Labels
investigate We have yet to investigate this issue

Comments

@Greenfoot5
Copy link

Information

  • Server Version: Paper 1.21.3
  • OldCombatMechanics version: 2.0.4
  • OldCombatMechanics config file:
config.yml
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at https://mozilla.org/MPL/2.0/.

# ############# OldCombatMechanics Plugin by kernitus and Rayzr522 ##########
#                                                                           #
# Bukkit Page: http://dev.bukkit.org/bukkit-plugins/oldcombatmechanics/     #
# Spigot Page: https://www.spigotmc.org/resources/oldcombatmechanics.19510/ #
# GitHub Page: https://github.com/kernitus/BukkitOldCombatMechanics/        #
#                                                                           #
# ###########################################################################

modesets:
  # Modesets are lists of modules that are enabled for a player in that mode.
  # Modules not listed in any modeset are assumed to always be available.
  # You can create, remove, and rename as many modesets as you like by modifying the list below.
  # When in PvP, the modeset of the attacker is checked first.
  # If not PvP, the modeset of the defending entity is checked.
  # Of course, the module must also be enabled in its own config section.
  # Sample below has modules enabled for "old" combat modeset and disabled for "new" combat modeset
  # PlaceholderAPI: %ocm_modeset%
  old:
  - disable-attack-cooldown
  - disable-sword-sweep
  - disable-offhand
  - old-tool-damage
  - sword-blocking
  - shield-damage-reduction
  - old-golden-apples
  - old-player-knockback
  - old-player-regen
  - old-armour-strength
  - old-potion-effects
  - old-critical-hits
  new: []

worlds:
  # These are the modesets available in each world.
  # If player has no modeset when moving worlds they'll be assigned first mode in list,
  # unless the mode from the world they are coming from is also available in the new world.
  # Worlds not specified below will have all modesets available.
  world:
  - old
  - new
  world_nether:
  - old
  - new
  world_the_end:
  - old
  - new
# old_world: ["old"]
# brave_new_world: ["new"]

mode-messages:
  # Messages used when changing player mode
  # To disable any message, leave the corresponding string empty (e.g., mode-status: "").
  # This applies to all messages in the configuration.
  mode-status: '&bYour current modeset is: &7%s'
  message-usage: '&eYou can use &c/ocm mode <modeset> [player] &eto change modeset'
  invalid-modeset: '&cPlease specify a valid modeset!'
  invalid-player: '&cPlease specify a valid player!'
  mode-set: '&2Set modeset to &7%s'

# ########################
# COMBAT MODULE SETTINGS
# ########################

disable-attack-cooldown:
  # This is to disable the attack cooldown
  enabled: true
  # What to set the attack speed to. Default for 1.9 is 4, at least 40 is needed for no cooldown.
  generic-attack-speed: 6

attack-frequency:
  # Allows changing the player invulnerability between hits
  enabled: true
  # The hit delay to apply. Default for 1.9+ is 20 ticks (1 second)
  playerDelay: 18
  mobDelay: 16

old-tool-damage:
  # This is to set the tool damage as in pre-1.9
  # IMPORTANT: Also enable disable-sword-sweep module or sweeps will have the damage value of the weapon in hand
  # NOTE: this will modify the damage, however the item tooltip will still show the 1.9+ damage
  enabled: true
  # Use old sharpness calculations, i.e. each level adds 1.25 damage
  # In 1.9+, sharpness adds 1 + 0.5 * level damage
  old-sharpness: false
  # Damage values shown in 1.9 representation (actual damage)
  # In 1.8 the damage tooltip value would be added to 1 'base damage', yielding the values below
  damages:
    # Axe damages
    GOLD_AXE: 4
    WOOD_AXE: 4
    STONE_AXE: 5
    IRON_AXE: 6
    DIAMOND_AXE: 7
    NETHERITE_AXE: 8
    # Shovel damages
    GOLD_SPADE: 2
    WOOD_SPADE: 2
    STONE_SPADE: 3
    IRON_SPADE: 4
    DIAMOND_SPADE: 5
    NETHERITE_SPADE: 6
    # Sword damages
    GOLD_SWORD: 5
    WOOD_SWORD: 5
    STONE_SWORD: 6
    IRON_SWORD: 7
    DIAMOND_SWORD: 8
    NETHERITE_SWORD: 9
    # Pickaxe damages
    GOLD_PICKAXE: 3
    WOOD_PICKAXE: 3
    STONE_PICKAXE: 4
    IRON_PICKAXE: 5
    DIAMOND_PICKAXE: 6
    NETHERITE_PICKAXE: 7
    # Hoe damages
    GOLD_HOE: 1
    WOOD_HOE: 1
    STONE_HOE: 1
    IRON_HOE: 1
    DIAMOND_HOE: 1
    NETHERITE_HOE: 1

old-critical-hits:
  # Makes critical hits work like in 1.8
  # With a critical hit, the damage will be multiplied by 1.5
  # In 1.9, the user must also not be sprinting for it to be a crit
  enabled: true
  world: []
  # What the damage, after applying potions effects, is multiplied by
  multiplier: 1.5
  # Whether to allow crits while sprinting. 1.8: true, 1.9: false
  allow-sprinting: true

old-player-regen:
  # This is to make players' regeneration act mostly like it did in pre-1.9
  # Based on https://minecraft.wiki/w/Hunger?oldid=948685
  enabled: false
  # How often a player should regenerate health, in milliseconds (In 1.8: 4 seconds)
  # The foodTickerTimer might not be perfectly accurate so we give it ~10ms of leeway
  interval: 3990
  # How many half-hearts the player should heal by, every seconds specified above
  amount: 1
  # How much exhaustion the player should get from healing. In 1.8: 3    In 1.9: 4    In 1.11: 6
  # If, after adding this, Minecraft finds the value is above 4, it subtracts 4
  # and either reduces saturation or, if saturation is 0, reduces food level by 1 (1/2 a stick)
  exhaustion: 3

# ########################
# ARMOUR
# ########################

old-armour-strength:
  # This is to make armour calculations like in 1.8
  # Based on this: https://minecraft.gamepedia.com/index.php?title=Armor&oldid=909187
  enabled: true
  # Whether to introduce randomness in the calculation, as in 1.8
  randomness: true

old-armour-durability:
  # This makes armour take a constant amount of durability damage (except for explosions)
  enabled: true
  # By how much to reduce durability every attack. 1.8 default is 1
  reduction: 1

# ########################
# SWEEP, SHIELDS & BLOCKING
# ########################

shield-damage-reduction:
  # This module allows changing the damage reduction behaviour of shields
  enabled: true
  # How much damage blocking should reduce
  # Firstly, amount is subtracted, then value is multiplied by percentage
  # 1.8: (damage - 1) * 50%    1.9: damage * 33%   1.11: damage * 0%
  # Damage reduction = (damage - damageReductionAmount) * damageReductionPercentage / 100
  generalDamageReductionAmount: 1
  generalDamageReductionPercentage: 95
  # This value works the same but is exclusively for projectile damage
  # Set amount to 0 and percentage to 100 for 1.8 behaviour, i.e. arrows go through shields
  projectileDamageReductionAmount: 1
  projectileDamageReductionPercentage: 100

sword-blocking:
  # This is to allow players to block with swords again, by getting a shield while they hold right click with a sword
  enabled: false
  # How often, in ticks, OCM should check if the player is still blocking with a shield, and remove it if not
  # If this is too fast, the player will have their shield disappear before they're able to block again causing a slight delay
  # If this is too slow, players will have a shield in their hand well after they've stopped blocking
  # 20 ticks = 1 second
  restoreDelay: 40
  # Whether to require players to have oldcombatmechanics.swordblock permission to block with a sword
  use-permission: false

disable-sword-sweep:
  # This is to disable the sword sweep attack
  # With ProtocolLib, particle effect is also removed
  enabled: true

disable-sword-sweep-particles:
  # This is to disable the sword sweep attack particles
  # Requires ProtocolLib
  enabled: true

# ########################
# KNOCKBACK
# ########################

old-player-knockback:
  # This is to change knockback players receive from attacks.  Default values are as in 1.8.
  #
  # Practice servers tend to use lower knockback, for example:
  # knockback-horizontal: 0.35
  # knockback-vertical: 0.35
  # knockback-vertical-limit: 0.4
  # knockback-extra-horizontal: 0.425
  # knockback-extra-vertical: 0.085
  #
  # Minigame servers use higher vertical knockback and lower horizontal knockback, exact values are unknown.
  enabled: true
  # Horizontal knockback is reduced by 40% for every successful attack by the player, with no limit
  # Increase to make clicking more important, decrease to make it less important
  knockback-horizontal: 0.4
  # Vertical knockback is not reduced by clicking faster
  # Increase to make clicking less important, decrease to make clicking more important
  knockback-vertical: 0.4
  # Vertical knockback limit is applied after base vertical knockback
  # This limit can be exceeded by sprint hitting or knockback enchantments, from the extra vertical knockback
  knockback-vertical-limit: 0.4
  # Extra horizontal knockback is applied for each level of knockback enchant, and for sprinting
  # Increase to make sprint resetting (w-tapping) more important, decrease to make it less important
  # Increase to make clicking more important, decrease to make clicking less important
  knockback-extra-horizontal: 0.5
  # Extra vertical knockback is applied for each level of knockback enchant, and for sprinting
  # Increase to make sprint resetting (w-tapping) more important, decrease to make it less important
  # Increase to make clicking less important, decrease to make clicking more important
  knockback-extra-vertical: 0.1
  # Should knockback resistance be enabled? (e.g. netherite armour knockback resistance)
  enable-knockback-resistance: false

old-fishing-knockback:
  # This is to make the knockback of players when they get hit by a fishing bobber the same as it was in pre-1.9
  enabled: true
  # This is the damage done by the fishing rod attack
  damage: 1.0E-4
  # This is to cancel dragging in the entity attached to the fishing rod when reeling in, like in 1.8
  # Options: all, players, mobs, none. players allows compatibility with WorldGuard pvp-deny regions
  cancelDraggingIn: players
  # Whether to also give knockback on non-player living entities (e.g. mobs)
  knockbackNonPlayerEntities: false
  # This is the delay in milliseconds in-between rod damage, so the player hit has time to fall back down
  hitCooldown: 1000

fishing-rod-velocity:
  # In 1.9+ fishing rods go 8 blocks instead of 12 blocks
  # This is due to both gravity and initial launch speed
  # Set to true to revert back to the old calculations and gravity
  enabled: true

projectile-knockback:
  # This adds knockback and/or damage to players when they get hit by snowballs, eggs & enderpearls
  # This has been a Bukkit bug for so long people thought it was vanilla when it was patched
  enabled: true
  # This is the damage done by each projectile
  damage:
    snowball: 1.0E-4
    egg: 1.0E-4
    ender_pearl: 1.0E-4

# ########################
# GAPPLES & POTIONS
# ########################

old-golden-apples:
  # This is to change the behaviour / crafting of golden apples to how it was in pre-1.9
  # WARNING: If on 1.12 or above and you disable this module you must reload the server for the recipe to disappear
  enabled: true
  # Cooldown between eating the apples, in seconds
  cooldown:
    # The cooldown for normal golden apples
    # PlaceholderAPI: %ocm_gapple_cooldown%
    normal: 0
    # Message when user tries to eat golden apple during cooldown. Leave empty to disable.
    message-normal: '&ePlease wait %seconds%s before eating another golden apple.'
    # The cooldown for enchanted golden apples
    # PlaceholderAPI: %ocm_napple_cooldown%
    enchanted: 0
    # Message when user tries to eat enchanted golden apple during cooldown. Leave empty to disable.
    message-enchanted: '&ePlease wait %seconds%s before eating another enchanted golden
      apple.'
    # Whether the two apple types share a cooldown.
    # If this is true:
    #   1. Eating any apple resets both cooldowns
    #   2. Each apple type can only be eaten when its cooldown time is over
    #      This means that when you eat *any* apple you start two parallel cooldowns: One for enchanted and one
    #      for normal apples. Each type can only be eaten when its cooldown is over.
    #      Once any apple is eaten, both cooldowns are restarted, so you can not eat either type again
    #      before its full cooldown is over.
    #   3. To have the plugin treat normal and enchanted golden apples as having the same cooldown,
    #      then set the same cooldown time and enable shared mode. (This was the old mode)
    # If this is false:
    #   Eating an enchanted apple will prevent any *enchanted* apple type from being eaten before the cooldown is over
    #   Eating a normal apple will prevent any *normal* apple type from being eaten before the normal cooldown is over
    is-shared: false
  # If you want to allow enchanted golden apple crafting
  enchanted-golden-apple-crafting: true
  # Enabling this makes the potion effects gained by eating golden apples
  # and enchanted golden apples the same as it was in pre-1.9
  old-potion-effects: true
  # Potion effects for golden apples
  # Duration is in seconds
  # Amplifier is the potion level-1, so Regeneration IV would be amplifier 3
  golden-apple-effects:
    regeneration:
      duration: 5
      amplifier: 1
    absorption:
      duration: 120
      amplifier: 0
  # Potion effects for enchanted golden apples
  enchanted-golden-apple-effects:
    regeneration:
      duration: 30
      amplifier: 4
    resistance:
      duration: 300
      amplifier: 0
    fire_resistance:
      duration: 300
      amplifier: 0
    absorption:
      duration: 120
      amplifier: 0
  # Enable this if you have another plugin which adds a crafting recipe for
  # enchanted golden apples (requires server restart)
  no-conflict-mode: false

old-potion-effects:
  # This is to restore the 1.8 potion effects and duration
  enabled: false
  
  # DURATION: (in seconds)
  potion-durations:
    drinkable:
      regeneration: 45
      strong_regeneration: 22
      long_regeneration: 120
      
      swiftness: 180
      strong_swiftness: 90
      long_swiftness: 480
      
      fire_resistance: 180
      long_fire_resistance: 480
      
      poison: 45
      strong_poison: 22
      long_poison: 120
      
      night_vision: 180
      long_night_vision: 480
      
      weakness: 90
      long_weakness: 240
      
      strength: 180
      strong_strength: 90
      long_strength: 480
      
      slowness: 90
      long_slowness: 240
      
      leaping: 180
      strong_leaping: 90
      long_leaping: 480
      
      water_breathing: 180
      long_water_breathing: 480
      
      invisibility: 180
      long_invisibility: 480
      
      # 1.9+ potions. You can add more as needed.
      # Make sure to also add to splash section below.
      luck: 300
      
      slow_falling: 90
      long_slow_falling: 240
    
    splash:
      regeneration: 33
      strong_regeneration: 16
      long_regeneration: 90
      
      swiftness: 135
      strong_swiftness: 67
      long_swiftness: 360
      
      fire_resistance: 135
      long_fire_resistance: 360
      
      poison: 33
      strong_poison: 16
      long_poison: 90
      
      night_vision: 180
      long_night_vision: 480
      
      weakness: 90
      long_weakness: 240
      
      strength: 135
      strong_strength: 67
      long_strength: 360
      
      slowness: 67
      long_slowness: 180
      
      leaping: 135
      strong_leaping: 67
      long_leaping: 360
      
      water_breathing: 135
      long_water_breathing: 360
      
      invisibility: 135
      long_invisibility: 360
      
      # 1.9+ potions. You can add more as needed
      luck: 300
      
      slow_falling: 90
      long_slow_falling: 240
  
  # EFFECTS
  # If 'multiplier' is true value is multiplied by base tool damage. If 'addend' it is added.
  # If both true, it is first increased by 1 then multiplied (same as +xx%)
  # Strength potion
  # 1.9: I = +3; II = +6;    1.8: I = +130%; II = +260%
  strength:
    modifier: 3
    multiplier: false
    addend: true
  # Weakness potion
  # 1.9 value: -4   1.8 value: -0.5
  weakness:
    modifier: -4
    multiplier: false

# ########################
# MISCELLANEOUS
# ########################

disable-crafting:
  # Disable the crafting of specified items
  enabled: true
  # List of denied items
  denied:
  - shield
  # Show the user a message if they try to craft a blacklisted item
  showMessage: true
  message: '&cYou cannot craft that item!'

disable-offhand:
  # Disable the usage of the offhand
  # Won't affect sword-blocking module
  enabled: false
  # Whether the following list allows items or blocks them
  whitelist: true
  # List of items that should be allowed/blocked
  # Example: [diamond_sword,BOW]
  items: []
  # Message to send user when denied. Set to '' to disable
  denied-message: '&cOff-hand is disabled'

old-brewing-stand:
  # Automatically refuels brewing stands
  enabled: true

no-lapis-enchantments:
  # Automatically adds lapis to enchantment tables upon opening
  enabled: false
  # Whether to only allow this for players with oldcombatmechanics.nolapis permission
  usePermission: false

disable-enderpearl-cooldown:
  # Disables enderpearl cooldown
  enabled: false
  # The cooldown, in seconds
  # PlaceholderAPI: %ocm_enderpearl_cooldown%
  cooldown: 0
  # Show the user a message if they try to use an enderpearl and the cooldown has not expired yet
  showMessage: true
  message: '&cYou must wait &7%ds&c before using an enderpearl again!'

chorus-fruit:
  # This makes the chorus fruit behaviour configurable
  enabled: false
  # The maximum distance the fruit can teleport the player. This a PER AXIS value, so this outlines a cube with
  # 2 * max-teleportation-distance as the side length
  # Vanilla default is 8.
  # Setting this to 0 disables chorus fruit teleport.
  # Setting this to a value greater than 8 MIGHT CAUSE CONFLICTS with bukkit's internal anti cheat
  # and *potentially* any other anti-cheat you use. Please make sure this is not an issue before increasing
  # this value.
  max-teleportation-distance: 8
  # Whether to prevent eating the fruit completely. This also prevents the teleportation.
  prevent-eating: false
  # The saturation value of the chorus fruit.
  # Vanilla default is 2.4
  saturation-value: 2.4
  # The hunger value of the chorus fruit.
  # Vanilla default is 4 (2 bars)
  hunger-value: 4

old-burn-delay:
  # This makes it so entities will immediately start to burn when entering fire
  enabled: false
  # How long, in ticks, entities should be on fire for after not being in direct contact anymore
  fire-ticks: 120

disable-projectile-randomness:
  # This is to remove projectile randomness while firing arrows with a bow
  # Or to remove effects of velocity when player is running and launching potions etc
  # This is actually a very old feature and has been in the game for quite some time
  enabled: false
  # What projectiles are affected e.g. arrow, splash_potion, snowball, egg, fishing_hook
  projectile-types:
  - arrow
  # This is the threshold between projectiles' (X,Z) values before they're considered the same and straightened
  # This value is only useful for multishot. The default of 0.1 works at all but extremely shallow angles,
  # where arrows end up bunched together. Set to 1 if you want multishots to all follow the same path.
  epsilon: 0.1

disable-bow-boost:
  # This is to stop players from boosting themselves forward by hitting themselves
  # while running with a punch II arrow from their bow
  # This module simply stops them from hitting themselves with arrows entirely
  enabled: false

disable-attack-sounds:
  # Disables attack sounds that were added with 1.9+
  # Requires ProtocolLib
  enabled: false
  # The sounds that will be blocked by this module
  blocked-sound-names:
  - ENTITY_PLAYER_ATTACK_STRONG
  - ENTITY_PLAYER_ATTACK_SWEEP
  - ENTITY_PLAYER_ATTACK_NODAMAGE
  - ENTITY_PLAYER_ATTACK_KNOCKBACK
  - ENTITY_PLAYER_ATTACK_CRIT
  - ENTITY_PLAYER_ATTACK_WEAK

# ########################
# SPECIAL SETTINGS BELOW #
# ########################

message-prefix: '&6[OCM]&r'

# This is to toggle the update checker
update-checker:
  # Whether to check for updates and notify players with the oldcombatmechanics.notify permission
  enabled: true
  # Whether to automatically download an update of the plugin
  # The update is applied on the next restart/reload of the server
  # Auto update is disabled if Spigot version is below 1.18.1 and force-below-1-18-1-config-upgrade is false
  # This is to prevent accidentally resetting the config
  auto-update: true

# Whether to force config upgrade even in Spigot versions below 1.18.1
# This is not advised, as all the comments would be removed
force-below-1-18-1-config-upgrade: false

# This enables command argument completion when pressing tab
command-completer:
  enabled: true

# This enables debug messages, only enable when troubleshooting
debug:
  enabled: true

# DO NOT CHANGE THIS NUMBER AS IT WILL RESET YOUR CONFIG
config-version: 66
Screenshots of 1 hit with a +50 damage sword with no strength, then strength 1-3. Image Image Image Image

Problem Description

To Reproduce

Steps to reproduce the behavior:

  1. Change config to have strength not multiplier, but addend.
  2. Apply Strength 2+ to self
  3. Hit something.

Expected Behaviour

Gain modifier * strength_level damage to your attack.

Actual Behaviour

Gain modifier * strength_level * strength_level damage to your attack.

@Greenfoot5 Greenfoot5 added the investigate We have yet to investigate this issue label Feb 8, 2025
@Greenfoot5
Copy link
Author

  • Server Log File:
Server Log
[14:40:12] [ServerMain/INFO]: [bootstrap] Running Java 21 (OpenJDK 64-Bit Server VM 21.0.6+7-LTS; Eclipse Adoptium Temurin-21.0.6+7) on Linux 5.15.0-91-generic (amd64)
[14:40:12] [ServerMain/INFO]: [bootstrap] Loading Paper 1.21.3-82-ver/1.21.3@5a60ffb (2024-12-23T19:10:30Z) for Minecraft 1.21.3
[14:40:12] [ServerMain/INFO]: [PluginInitializerManager] Initializing plugins...
[14:40:13] [Paper Plugin Remapper Thread - 1/INFO]: [PluginRemapper] Remapping plugin 'plugins/OldCombatMechanics.jar'...
[14:40:14] [Paper Plugin Remapper Thread - 1/INFO]: [PluginRemapper] Done remapping plugin 'plugins/OldCombatMechanics.jar' in 992ms.
[14:40:14] [ServerMain/INFO]: [PluginInitializerManager] Initialized 21 plugins
[14:40:14] [ServerMain/INFO]: [PluginInitializerManager] Bukkit plugins (21):
 - ArmorStandEditor (1.21.4-48), CastleSiege (1.2.5), ConwyMC (1.0.4), CoralStay (1.2), CraftingStore (2.9.3), DiscordSRV (1.29.0), FastAsyncWorldEdit (2.12.4-SNAPSHOT-1033;05bfc4c), LibsDisguises (10.0.44-SNAPSHOT), LuckPerms (5.4.151), MiniMOTD (2.1.5), MythicMobs (5.8.0-SNAPSHOT-d2567e1e), NametagEdit (4.5.24), OldCombatMechanics (2.0.4), ProtocolLib (5.4.0-SNAPSHOT-739), UltimateAdvancementAPI (2.4.3), ViaBackwards (5.2.1), ViaVersion (5.2.1), VotifierPlus (1.3), VotingPlugin (6.18), WorldGuard (7.0.12+829a4a4), packetevents (2.7.0)
[14:40:20] [ServerMain/INFO]: Environment: Environment[sessionHost=https://sessionserver.mojang.com, servicesHost=https://api.minecraftservices.com, name=PROD]
[14:40:20] [ServerMain/INFO]: [MCTypeRegistry] Initialising converters for DataConverter...
[14:40:20] [ServerMain/INFO]: [MCTypeRegistry] Finished initialising converters for DataConverter in 502.0ms
[14:40:23] [ServerMain/INFO]: Loaded 1337 recipes
[14:40:23] [ServerMain/INFO]: Loaded 1448 advancements
[14:40:23] [Server thread/INFO]: Starting minecraft server version 1.21.3
[14:40:23] [Server thread/INFO]: Loading properties
[14:40:23] [Server thread/INFO]: This server is running Paper version 1.21.3-82-ver/1.21.3@5a60ffb (2024-12-23T19:10:30Z) (Implementing API version 1.21.3-R0.1-SNAPSHOT)
[14:40:24] [Server thread/INFO]: [spark] This server bundles the spark profiler. For more information please visit https://docs.papermc.io/paper/profiling
[14:40:24] [Server thread/INFO]: Using 4 threads for Netty based IO
[14:40:24] [Server thread/INFO]: Server Ping Player Sample Count: 12
[14:40:25] [Server thread/INFO]: [MoonriseCommon] Paper is using 1 worker threads, 1 I/O threads
[14:40:25] [Server thread/INFO]: [ChunkTaskScheduler] Chunk system is using population gen parallelism: true
[14:40:26] [Server thread/INFO]: Default game type: SURVIVAL
[14:40:26] [Server thread/INFO]: Generating keypair
[14:40:26] [Server thread/INFO]: Starting Minecraft server on 0.0.0.0:25535
[14:40:26] [Server thread/INFO]: Using epoll channel type
[14:40:26] [Server thread/INFO]: Paper: Using libdeflate (Linux x86_64) compression from Velocity.
[14:40:26] [Server thread/INFO]: Paper: Using OpenSSL 3.x.x (Linux x86_64) cipher from Velocity.
[14:40:27] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loading 4 libraries... please wait
[14:40:28] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /home/container/libraries/net/kyori/adventure-api/4.16.0/adventure-api-4.16.0.jar
[14:40:28] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /home/container/libraries/net/kyori/adventure-key/4.16.0/adventure-key-4.16.0.jar
[14:40:28] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /home/container/libraries/net/kyori/examination-api/1.3.0/examination-api-1.3.0.jar
[14:40:28] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /home/container/libraries/net/kyori/examination-string/1.3.0/examination-string-1.3.0.jar
[14:40:28] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /home/container/libraries/org/jetbrains/annotations/24.1.0/annotations-24.1.0.jar
[14:40:28] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /home/container/libraries/net/kyori/adventure-platform-bukkit/4.3.2/adventure-platform-bukkit-4.3.2.jar
[14:40:28] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /home/container/libraries/net/kyori/adventure-platform-api/4.3.2/adventure-platform-api-4.3.2.jar
[14:40:28] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /home/container/libraries/net/kyori/adventure-text-serializer-bungeecord/4.3.2/adventure-text-serializer-bungeecord-4.3.2.jar
[14:40:28] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /home/container/libraries/net/kyori/adventure-text-serializer-legacy/4.13.1/adventure-text-serializer-legacy-4.13.1.jar
[14:40:28] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /home/container/libraries/net/kyori/adventure-nbt/4.13.1/adventure-nbt-4.13.1.jar
[14:40:28] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /home/container/libraries/net/kyori/adventure-text-serializer-gson-legacy-impl/4.13.1/adventure-text-serializer-gson-legacy-impl-4.13.1.jar
[14:40:28] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /home/container/libraries/net/kyori/adventure-platform-facet/4.3.2/adventure-platform-facet-4.3.2.jar
[14:40:28] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /home/container/libraries/net/kyori/adventure-platform-viaversion/4.3.2/adventure-platform-viaversion-4.3.2.jar
[14:40:28] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /home/container/libraries/net/kyori/adventure-text-minimessage/4.16.0/adventure-text-minimessage-4.16.0.jar
[14:40:28] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /home/container/libraries/net/kyori/adventure-text-serializer-gson/4.16.0/adventure-text-serializer-gson-4.16.0.jar
[14:40:28] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /home/container/libraries/net/kyori/adventure-text-serializer-json/4.16.0/adventure-text-serializer-json-4.16.0.jar
[14:40:28] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /home/container/libraries/net/kyori/option/1.0.0/option-1.0.0.jar
[14:40:28] [Server thread/INFO]: [SpigotLibraryLoader] [MythicMobs] Loaded library /home/container/libraries/com/google/code/gson/gson/2.8.0/gson-2.8.0.jar
[14:40:28] [Server thread/INFO]: [SpigotLibraryLoader] [VotingPlugin] Loading 1 libraries... please wait
[14:40:28] [Server thread/INFO]: [SpigotLibraryLoader] [VotingPlugin] Loaded library /home/container/libraries/org/openjdk/nashorn/nashorn-core/15.3/nashorn-core-15.3.jar
[14:40:28] [Server thread/INFO]: [SpigotLibraryLoader] [VotingPlugin] Loaded library /home/container/libraries/org/ow2/asm/asm/7.3.1/asm-7.3.1.jar
[14:40:28] [Server thread/INFO]: [SpigotLibraryLoader] [VotingPlugin] Loaded library /home/container/libraries/org/ow2/asm/asm-commons/7.3.1/asm-commons-7.3.1.jar
[14:40:28] [Server thread/INFO]: [SpigotLibraryLoader] [VotingPlugin] Loaded library /home/container/libraries/org/ow2/asm/asm-analysis/7.3.1/asm-analysis-7.3.1.jar
[14:40:28] [Server thread/INFO]: [SpigotLibraryLoader] [VotingPlugin] Loaded library /home/container/libraries/org/ow2/asm/asm-tree/7.3.1/asm-tree-7.3.1.jar
[14:40:28] [Server thread/INFO]: [SpigotLibraryLoader] [VotingPlugin] Loaded library /home/container/libraries/org/ow2/asm/asm-util/7.3.1/asm-util-7.3.1.jar
[14:40:28] [Server thread/INFO]: [ViaVersion] Loading server plugin ViaVersion v5.2.1
[14:40:28] [Server thread/INFO]: [ViaVersion] ViaVersion 5.2.1 is now loaded. Registering protocol transformers and injecting...
[14:40:29] [Via-Mappingloader-0/INFO]: [ViaVersion] Loading block connection mappings ...
[14:40:29] [Via-Mappingloader-0/INFO]: [ViaVersion] Using FastUtil Long2ObjectOpenHashMap for block connections
[14:40:30] [Server thread/INFO]: [ViaBackwards] Loading translations...
[14:40:30] [Server thread/INFO]: [ViaBackwards] Registering protocols...
[14:40:31] [Server thread/INFO]: [ProtocolLib] Loading server plugin ProtocolLib v5.4.0-SNAPSHOT-739
[14:40:31] [Server thread/WARN]: [ProtocolLib] Version (MC: 1.21.3) has not yet been tested! Proceed with caution.
[14:40:31] [Server thread/INFO]: [ViaBackwards] Loading server plugin ViaBackwards v5.2.1
[14:40:31] [Server thread/INFO]: [packetevents] Loading server plugin packetevents v2.7.0
[14:40:35] [Server thread/INFO]: [LuckPerms] Loading server plugin LuckPerms v5.4.151
[14:40:35] [Server thread/INFO]: [LibsDisguises] Loading server plugin LibsDisguises v10.0.44-SNAPSHOT
[14:40:35] [Server thread/INFO]: [FastAsyncWorldEdit] Loading server plugin FastAsyncWorldEdit v2.12.4-SNAPSHOT-1033;05bfc4c
[14:40:37] [Server thread/INFO]: Got request to register class com.sk89q.worldedit.bukkit.BukkitServerInterface with WorldEdit [com.sk89q.worldedit.extension.platform.PlatformManager@26de0d74]
[14:40:37] [Server thread/INFO]: [UltimateAdvancementAPI] Loading server plugin UltimateAdvancementAPI v2.4.3
[14:40:37] [Server thread/INFO]: [NametagEdit] Loading server plugin NametagEdit v4.5.24
[14:40:37] [Server thread/INFO]: [WorldGuard] Loading server plugin WorldGuard v7.0.12+829a4a4
[14:40:37] [Server thread/INFO]: [VotifierPlus] Loading server plugin VotifierPlus v1.3
[14:40:37] [Server thread/INFO]: [ConwyMC] Loading server plugin ConwyMC v1.0.4
[14:40:37] [Server thread/INFO]: [MythicMobs] Loading server plugin MythicMobs v5.8.0-SNAPSHOT-d2567e1e
[14:40:37] [Server thread/INFO]: [LumineUtils] (io.lumine.mythic.bukkit.utils.) is bound to plugin MythicMobs - io.lumine.mythic.bukkit.MythicBukkit
[14:40:37] [Server thread/INFO]: [MythicMobs] §x§f§f§0§0§0§0M§x§f§f§6§6§0§0y§x§f§f§c§c§0§0t§x§c§b§f§f§0§0h§x§6§5§f§f§0§0i§x§0§0§f§f§0§0c§x§0§0§f§f§6§6 §x§0§0§f§f§c§bE§x§0§0§c§b§f§fn§x§0§0§6§5§f§fa§x§0§0§0§0§f§fb§x§6§6§0§0§f§fl§x§c§c§0§0§f§fe§x§f§f§0§0§c§cd§x§f§f§0§0§6§6!
[14:40:37] [Server thread/INFO]: [CoralStay] Loading server plugin CoralStay v1.2
[14:40:37] [Server thread/INFO]: [MiniMOTD] Loading server plugin MiniMOTD v2.1.5
[14:40:37] [Server thread/INFO]: [CraftingStore] Loading server plugin CraftingStore v2.9.3
[14:40:37] [Server thread/INFO]: [VotingPlugin] Loading server plugin VotingPlugin v6.18
[14:40:37] [Server thread/INFO]: [CastleSiege] Loading server plugin CastleSiege v1.2.5
[14:40:37] [Server thread/INFO]: [DiscordSRV] Loading server plugin DiscordSRV v1.29.0
[14:40:37] [Server thread/INFO]: [OldCombatMechanics] Loading server plugin OldCombatMechanics v2.0.4
[14:40:37] [Server thread/INFO]: [ArmorStandEditor] Loading server plugin ArmorStandEditor v1.21.4-48
[14:40:37] [Server thread/INFO]: Server permissions file permissions.yml is empty, ignoring it
[14:40:37] [Server thread/INFO]: [ProtocolLib] Enabling ProtocolLib v5.4.0-SNAPSHOT-739
[14:40:38] [Server thread/INFO]: [LuckPerms] Enabling LuckPerms v5.4.151
[14:40:38] [Server thread/INFO]:         __    
[14:40:38] [Server thread/INFO]:   |    |__)   LuckPerms v5.4.151
[14:40:38] [Server thread/INFO]:   |___ |      Running on Bukkit - Paper
[14:40:38] [Server thread/INFO]: 
[14:40:38] [Server thread/INFO]: [LuckPerms] Loading configuration...
[14:40:38] [Server thread/INFO]: [LuckPerms] Loading storage provider... [H2]
[14:40:39] [Server thread/INFO]: [LuckPerms] Loading internal permission managers...
[14:40:39] [Server thread/INFO]: [LuckPerms] Performing initial data load...
[14:40:39] [Server thread/INFO]: [LuckPerms] Successfully enabled. (took 1868ms)
[14:40:39] [Server thread/INFO]: [FastAsyncWorldEdit] Enabling FastAsyncWorldEdit v2.12.4-SNAPSHOT-1033;05bfc4c
[14:40:40] [Server thread/INFO]: [com.fastasyncworldedit.core.Fawe] LZ4 Compression Binding loaded successfully
[14:40:40] [Server thread/INFO]: [com.fastasyncworldedit.core.Fawe] ZSTD Compression Binding loaded successfully
[14:40:40] [Server thread/INFO]: Registering commands with com.sk89q.worldedit.bukkit.BukkitServerInterface
[14:40:40] [Server thread/INFO]: WEPIF: Using the Bukkit Permissions API.
[14:40:40] [Server thread/INFO]: Using com.sk89q.worldedit.bukkit.adapter.impl.fawe.v1_21_3.PaperweightFaweAdapter as the Bukkit adapter
[14:40:42] [Server thread/INFO]: [UltimateAdvancementAPI] Enabling UltimateAdvancementAPI v2.4.3
[14:40:42] [Thread-12/WARN]: [com.fastasyncworldedit.core.util.UpdateNotification] An update for FastAsyncWorldEdit is available. You are 3 build(s) out of date.
You are running build 1033, the latest version is build 1036.
Update at https://www.spigotmc.org/resources/13932/
[14:40:42] [Server thread/INFO]: [CastleSiege] Enabling CastleSiege v1.2.5
[14:40:42] [Server thread/INFO]: [CastleSiege] Enabling Plugin...
[14:40:42] [Server thread/INFO]: [CastleSiege] Waiting until POSTWORLD to continue enabling...
[14:40:42] [Server thread/INFO]: Preparing level "world"
[14:40:42] [Server thread/INFO]: Preparing start region for dimension minecraft:overworld
[14:40:43] [Server thread/INFO]: Preparing spawn area: 0%
[14:40:44] [Server thread/INFO]: Preparing spawn area: 0%
[14:40:44] [Server thread/INFO]: Preparing spawn area: 0%
[14:40:44] [Server thread/INFO]: Preparing spawn area: 0%
[14:40:44] [Server thread/INFO]: Time elapsed: 1978 ms
[14:40:44] [Server thread/INFO]: Preparing start region for dimension minecraft:the_nether
[14:40:45] [Server thread/INFO]: Preparing spawn area: 0%
[14:40:45] [Server thread/INFO]: Preparing spawn area: 0%
[14:40:45] [Server thread/INFO]: Time elapsed: 899 ms
[14:40:45] [Server thread/INFO]: Preparing start region for dimension minecraft:the_end
[14:40:45] [Server thread/INFO]: Preparing spawn area: 0%
[14:40:46] [Server thread/INFO]: Time elapsed: 413 ms
[14:40:46] [Server thread/INFO]: [ViaVersion] Enabling ViaVersion v5.2.1
[14:40:46] [Server thread/INFO]: [ViaVersion] ViaVersion detected server version: 1.21.2-1.21.3 (768)
[14:40:46] [Server thread/INFO]: [ViaBackwards] Enabling ViaBackwards v5.2.1
[14:40:46] [Server thread/INFO]: [packetevents] Enabling packetevents v2.7.0
[14:40:46] [packetevents-update-check-thread/INFO]: [packetevents] Checking for updates, please wait...
[14:40:46] [Server thread/INFO]: [LibsDisguises] Enabling LibsDisguises v10.0.44-SNAPSHOT
[14:40:46] [Server thread/INFO]: [LibsDisguises] File Name: LibsDisguises.jar
[14:40:46] [Server thread/INFO]: [LibsDisguises] Discovered nms version: (Package: {Not package relocated}) (LD: v1_21_R2) (MC: 1.21.3)
[14:40:46] [Server thread/INFO]: [LibsDisguises] Jenkins Build: #1505
[14:40:46] [Server thread/INFO]: [LibsDisguises] Build Date: 31/12/2024 06:48
[14:40:46] [Server thread/INFO]: [LibsDisguises] If you own the plugin, place the premium jar downloaded from https://www.spigotmc.org/resources/libs-disguises.32453/ in plugins/LibsDisguises/
[14:40:46] [Server thread/INFO]: [LibsDisguises] You are running the free version, commands limited to non-players and operators. (Console, Command Blocks, Admins)
[14:40:46] [Server thread/INFO]: [LibsDisguises] Config 'TallSelfDisguises' is set to 'false', LD will hide oversized disguises from self disguise. https://www.spigotmc.org/wiki/lib-s-disguises-faq/#tall-disguises-self-disguises
[14:40:46] [packetevents-update-check-thread/INFO]: [packetevents] You are running the latest release of PacketEvents. Your build: (2.7.0)
[14:40:50] [Server thread/INFO]: [LibsDisguises] Loaded custom disguise libraryaddict
[14:40:50] [Server thread/INFO]: [LibsDisguises] Loaded 1 custom disguise
[14:40:50] [Server thread/INFO]: [LibsDisguises] Config is up to date!
[14:40:51] [Server thread/INFO]: [NametagEdit] Enabling NametagEdit v4.5.24
[14:40:51] [Server thread/INFO]: [NametagEdit] Successfully loaded using bukkit version: v1_21_3
[14:40:51] [Server thread/INFO]: [NametagEdit] Found LuckPerms! Hooking in.
[14:40:51] [Server thread/INFO]: [WorldGuard] Enabling WorldGuard v7.0.12+829a4a4
[14:40:51] [Server thread/INFO]: [WorldGuard] (world) TNT ignition is PERMITTED.
[14:40:51] [Server thread/INFO]: [WorldGuard] (world) Lighters are PERMITTED.
[14:40:51] [Server thread/INFO]: [WorldGuard] (world) Lava fire is PERMITTED.
[14:40:51] [Server thread/INFO]: [WorldGuard] (world) Fire spread is UNRESTRICTED.
[14:40:51] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world'
[14:40:51] [Server thread/INFO]: [WorldGuard] (world_nether) TNT ignition is PERMITTED.
[14:40:51] [Server thread/INFO]: [WorldGuard] (world_nether) Lighters are PERMITTED.
[14:40:51] [Server thread/INFO]: [WorldGuard] (world_nether) Lava fire is PERMITTED.
[14:40:51] [Server thread/INFO]: [WorldGuard] (world_nether) Fire spread is UNRESTRICTED.
[14:40:51] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world_nether'
[14:40:51] [Server thread/INFO]: [WorldGuard] (world_the_end) TNT ignition is PERMITTED.
[14:40:51] [Server thread/INFO]: [WorldGuard] (world_the_end) Lighters are PERMITTED.
[14:40:51] [Server thread/INFO]: [WorldGuard] (world_the_end) Lava fire is PERMITTED.
[14:40:51] [Server thread/INFO]: [WorldGuard] (world_the_end) Fire spread is UNRESTRICTED.
[14:40:51] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'world_the_end'
[14:40:51] [Server thread/INFO]: [WorldGuard] Loading region data...
[14:40:52] [Server thread/INFO]: [VotifierPlus] Enabling VotifierPlus v1.3
[14:40:52] [Server thread/INFO]: [VotifierPlus] Debug: 0.0.0.0:25536
[14:40:52] [Server thread/INFO]: [VotifierPlus] Votifier enabled.
[14:40:52] [Server thread/INFO]: [ConwyMC] Enabling ConwyMC v1.0.4
[14:40:52] [Server thread/INFO]: [ConwyMC] Enabling Plugin...
[14:40:52] [Server thread/INFO]: [ConwyMC] Successfully connected to the ConwyMC MySQL Database!
[14:40:52] [Server thread/INFO]: [ConwyMC] <!> Database is connected! <!>
[14:40:52] [Server thread/INFO]: [ConwyMC] Plugin has been enabled!
[14:40:52] [Server thread/INFO]: [MythicMobs] Enabling MythicMobs v5.8.0-SNAPSHOT-d2567e1e
[14:40:52] [Server thread/INFO]: [MythicMobs] Loading MythicMobs for Paper (MC: 1.21.3)...
[14:40:52] [Server thread/INFO]: [MythicMobs] The server is running Paper; enabled Paper exclusive functionality
[14:40:55] [Server thread/INFO]: [MythicMobs] [STDOUT] END_SPAWN_POINT
[14:40:55] [Server thread/WARN]: Nag author(s): '[Lumine]' of 'MythicMobs v5.8.0-SNAPSHOT-d2567e1e' about their usage of System.out/err.print. Please use your plugin's logger instead (JavaPlugin#getLogger).
[14:40:55] [Server thread/INFO]: [MythicMobs] [STDOUT] RAIN_DELAY
[14:40:55] [Server thread/INFO]: [MythicMobs] [STDOUT] RAIN_DURATION
[14:40:55] [Server thread/INFO]: [MythicMobs] [STDOUT] THUNDER_DELAY
[14:40:55] [Server thread/INFO]: [MythicMobs] [STDOUT] THUNDER_DURATION
[14:40:55] [Server thread/INFO]: [MythicMobs] [STDOUT] LOGGER
[14:40:55] [Server thread/INFO]: [MythicMobs] [STDOUT] EMPTY_TIME_NO_TICK
[14:40:55] [Server thread/INFO]: [MythicMobs] [STDOUT] MAX_SCHEDULED_TICKS_PER_TICK
[14:40:55] [Server thread/INFO]: [MythicMobs] [STDOUT] players
[14:40:55] [Server thread/INFO]: [MythicMobs] [STDOUT] chunkSource
[14:40:55] [Server thread/INFO]: [MythicMobs] [STDOUT] server
[14:40:55] [Server thread/INFO]: [MythicMobs] [STDOUT] serverLevelData
[14:40:55] [Server thread/INFO]: [MythicMobs] [STDOUT] lastSpawnChunkRadius
[14:40:55] [Server thread/INFO]: [MythicMobs] [STDOUT] entityTickList
[14:40:55] [Server thread/INFO]: [MythicMobs] [STDOUT] gameEventDispatcher
[14:40:55] [Server thread/INFO]: [MythicMobs] [STDOUT] noSave
[14:40:55] [Server thread/INFO]: [MythicMobs] [STDOUT] sleepStatus
[14:40:55] [Server thread/INFO]: [MythicMobs] [STDOUT] emptyTime
[14:40:55] [Server thread/INFO]: [MythicMobs] [STDOUT] portalForcer
[14:40:55] [Server thread/INFO]: [MythicMobs] [STDOUT] blockTicks
[14:40:55] [Server thread/INFO]: [MythicMobs] [STDOUT] fluidTicks
[14:40:55] [Server thread/INFO]: [MythicMobs] [STDOUT] pathTypesByPosCache
[14:40:55] [Server thread/INFO]: [MythicMobs] [STDOUT] navigatingMobs
[14:40:55] [Server thread/INFO]: [MythicMobs] [STDOUT] isUpdatingNavigations
[14:40:55] [Server thread/INFO]: [MythicMobs] [STDOUT] raids
[14:40:55] [Server thread/INFO]: [MythicMobs] [STDOUT] blockEvents
[14:40:55] [Server thread/INFO]: [MythicMobs] [STDOUT] blockEventsToReschedule
[14:40:55] [Server thread/INFO]: [MythicMobs] [STDOUT] handlingTick
[14:40:55] [Server thread/INFO]: [MythicMobs] [STDOUT] customSpawners
[14:40:55] [Server thread/INFO]: [MythicMobs] [STDOUT] dragonFight
[14:40:55] [Server thread/INFO]: [MythicMobs] [STDOUT] dragonParts
[14:40:55] [Server thread/INFO]: [MythicMobs] [STDOUT] structureManager
[14:40:55] [Server thread/INFO]: [MythicMobs] [STDOUT] structureCheck
[14:40:55] [Server thread/INFO]: [MythicMobs] [STDOUT] tickTime
[14:40:55] [Server thread/INFO]: [MythicMobs] [STDOUT] randomSequences
[14:40:55] [Server thread/INFO]: [MythicMobs] [STDOUT] convertable
[14:40:55] [Server thread/INFO]: [MythicMobs] [STDOUT] uuid
[14:40:55] [Server thread/INFO]: [MythicMobs] [STDOUT] hasPhysicsEvent
[14:40:55] [Server thread/INFO]: [MythicMobs] [STDOUT] hasEntityMoveEvent
[14:40:55] [Server thread/INFO]: [MythicMobs] [STDOUT] wireHandler
[14:40:55] [Server thread/INFO]: [MythicMobs] [STDOUT] viewDistanceHolder
[14:40:55] [Server thread/INFO]: [MythicMobs] [STDOUT] chunkLoader
[14:40:55] [Server thread/INFO]: [MythicMobs] [STDOUT] entityDataController
[14:40:55] [Server thread/INFO]: [MythicMobs] [STDOUT] poiDataController
[14:40:55] [Server thread/INFO]: [MythicMobs] [STDOUT] chunkDataController
[14:40:55] [Server thread/INFO]: [MythicMobs] [STDOUT] chunkTaskScheduler
[14:40:55] [Server thread/INFO]: [MythicMobs] [STDOUT] lastMidTickFailure
[14:40:55] [Server thread/INFO]: [MythicMobs] [STDOUT] tickedBlocksOrFluids
[14:40:55] [Server thread/INFO]: [MythicMobs] [STDOUT] nearbyPlayers
[14:40:55] [Server thread/INFO]: [MythicMobs] [STDOUT] EMPTY_CHUNK_AND_HOLDERS
[14:40:55] [Server thread/INFO]: [MythicMobs] [STDOUT] loadedChunks
[14:40:55] [Server thread/INFO]: [MythicMobs] [STDOUT] tickingChunks
[14:40:55] [Server thread/INFO]: [MythicMobs] [STDOUT] entityTickingChunks
[14:40:55] [Server thread/INFO]: [MythicMobs] [STDOUT] EMPTY_PLAYER_CHUNK_HOLDERS
[14:40:55] [Server thread/INFO]: [MythicMobs] [STDOUT] playerTickingChunks
[14:40:55] [Server thread/INFO]: [MythicMobs] [STDOUT] playerTickingRequests
[14:40:55] [Server thread/INFO]: [MythicMobs] [STDOUT] lagCompensationTick
[14:40:55] [Server thread/INFO]: [MythicMobs] [STDOUT] simpleRandom
[14:40:55] [Server thread/INFO]: [MythicMobs] [STDOUT] currentlyTickingEntity
[14:40:55] [Server thread/INFO]: [MythicMobs] Mythic LibsDisguises Support has been enabled!
[14:40:55] [Server thread/INFO]: [MythicMobs] Mythic WorldGuard Support has been enabled!
[14:40:55] [Server thread/INFO]: [MythicMobs] Base directory /home/container/plugins/MythicMobs/data
[14:40:55] [Server thread/INFO]: [MythicMobs] Module directory /home/container/plugins/MythicMobs/data/worlds
[14:40:58] [Server thread/INFO]: [MythicMobs] Loading Packs...
[14:40:58] [Server thread/INFO]: [MythicMobs] Loading Items...
[14:40:59] [Server thread/INFO]: [MythicMobs] Loading Item Groups...
[14:40:59] [Server thread/INFO]: [MythicMobs] Loading Skills...
[14:40:59] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '2,bd=false': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[14:40:59] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '2,bd=false': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[14:40:59] [Server thread/WARN]: [MythicMobs] Failed to parse Placeholder '0.5,bd=false': Math and variables in numeric values require premium! Consider getting MythicMobs Premium at www.mythiccraft.io
[14:40:59] [Server thread/INFO]: [MythicMobs] Loading Drop Tables...
[14:40:59] [Server thread/INFO]: [MythicMobs] Loading Random Spawns...
[14:40:59] [Server thread/INFO]: [MythicMobs] Loading Spawn Blocks...
[14:40:59] [Server thread/INFO]: [MythicMobs] ✓ Loaded 22 mobs.
[14:40:59] [Server thread/INFO]: [MythicMobs] ✓ Loaded 3 vanilla mob overrides.
[14:40:59] [Server thread/INFO]: [MythicMobs] ✓ Loaded 0 mob stacks.
[14:40:59] [Server thread/INFO]: [MythicMobs] ✓ Loaded 49 skills.
[14:40:59] [Server thread/INFO]: [MythicMobs] ✓ Loaded 0 random spawns.
[14:40:59] [Server thread/INFO]: [MythicMobs] ✓ Loaded 5 mythic items.
[14:40:59] [Server thread/INFO]: [MythicMobs] ✓ Loaded 2 drop tables.
[14:40:59] [Server thread/INFO]: [MythicMobs] ✓ Loaded 40 mob spawners.
[14:40:59] [Server thread/INFO]: [MythicMobs] MythicMobs configuration file loaded successfully.
[14:41:00] [Server thread/INFO]: [MythicMobs] Started up bStats Metrics
[14:41:00] [Server thread/INFO]: [MythicMobs] ✓ MythicMobs v5.8.0 ( build d2567e1e ) has been successfully loaded!
[14:41:00] [Server thread/INFO]: [CoralStay] Enabling CoralStay v1.2
[14:41:00] [Server thread/INFO]: [MiniMOTD] Enabling MiniMOTD v2.1.5
[14:41:01] [Server thread/INFO]: [CraftingStore] Enabling CraftingStore v2.9.3
[14:41:01] [Server thread/INFO]: [VotingPlugin] Enabling VotingPlugin v6.18
[14:41:01] [Server thread/INFO]: [VotingPlugin] Loaded LuckPerms hook!
[14:41:01] [Server thread/INFO]: [com.bencodez.votingplugin.advancedcore.hikari.HikariDataSource] HikariPool-1 - Starting...
[14:41:01] [Server thread/INFO]: [com.bencodez.votingplugin.advancedcore.hikari.HikariDataSource] HikariPool-1 - Start completed.
[14:41:02] [Server thread/INFO]: [VotingPlugin] Giving VotingPlugin.Player permission by default, can be disabled in the config
[14:41:02] [Server thread/INFO]: [VotingPlugin] Enabled VotingPlugin 6.18
[14:41:02] [Server thread/INFO]: [VotingPlugin] Using dev build, this is not a stable build, use at your own risk. Build number: NOTSET
[14:41:02] [Server thread/INFO]: [DiscordSRV] Enabling DiscordSRV v1.29.0
[14:41:02] [Server thread/INFO]: [OldCombatMechanics] Enabling OldCombatMechanics v2.0.4
[14:41:02] [Server thread/INFO]: [OldCombatMechanics] [DEBUG] Enabled ModuleUpdateChecker
[14:41:02] [Server thread/INFO]: [OldCombatMechanics] [DEBUG] Enabled ModesetListener
[14:41:02] [Server thread/INFO]: [OldCombatMechanics] [DEBUG] Enabled ModuleAttackCooldown
[14:41:02] [Server thread/INFO]: [OldCombatMechanics] [DEBUG] Enabled ModuleOldToolDamage
[14:41:02] [Server thread/INFO]: [OldCombatMechanics] [DEBUG] Enabled ModuleSwordSweep
[14:41:02] [Server thread/INFO]: [OldCombatMechanics] [DEBUG] Enabled ModuleOldCriticalHits
[14:41:02] [Server thread/INFO]: [OldCombatMechanics] [DEBUG] Enabled EntityDamageByEntityListener
[14:41:02] [Server thread/INFO]: [OldCombatMechanics] [DEBUG] Enabled ModuleShieldDamageReduction
[14:41:02] [Server thread/INFO]: [OldCombatMechanics] [DEBUG] Enabled ModuleOldArmourStrength
[14:41:02] [Server thread/INFO]: [OldCombatMechanics] [DEBUG] Enabled ModuleOldArmourDurability
[14:41:02] [Server thread/INFO]: [OldCombatMechanics] [DEBUG] Enabled ModuleGoldenApple
[14:41:02] [Server thread/INFO]: [OldCombatMechanics] [DEBUG] Enabled ModuleFishingKnockback
[14:41:02] [Server thread/INFO]: [OldCombatMechanics] [DEBUG] Enabled ModulePlayerKnockback
[14:41:02] [Server thread/INFO]: [OldCombatMechanics] [DEBUG] Enabled ModuleDisableCrafting
[14:41:02] [Server thread/INFO]: [OldCombatMechanics] [DEBUG] Enabled ModuleOldBrewingStand
[14:41:02] [Server thread/INFO]: [OldCombatMechanics] [DEBUG] Enabled ModuleProjectileKnockback
[14:41:02] [Server thread/INFO]: [OldCombatMechanics] [DEBUG] Enabled ModuleAttackFrequency
[14:41:02] [Server thread/INFO]: [OldCombatMechanics] [DEBUG] Enabled ModuleFishingRodVelocity
[14:41:02] [Server thread/INFO]: [OldCombatMechanics] [DEBUG] Enabled ModuleSwordSweepParticles
[14:41:03] [Server thread/INFO]: [OldCombatMechanics] [DEBUG] [ModuleGoldenApple] Added napple recipe
[14:41:03] [Server thread/INFO]: [OldCombatMechanics] OldCombatMechanics v2.0.4 has been enabled
[14:41:03] [Server thread/INFO]: [ArmorStandEditor] Enabling ArmorStandEditor v1.21.4-48
[14:41:03] [Server thread/INFO]: [ArmorStandEditor] ======= ArmorStandEditor =======
[14:41:03] [Server thread/INFO]: [ArmorStandEditor] Plugin Version: v1.21.4-48
[14:41:03] [Server thread/INFO]: [ArmorStandEditor] Minecraft Version: 1.21.3
[14:41:03] [Server thread/INFO]: [ArmorStandEditor] ArmorStandEditor is compatible with this version of Minecraft. Loading continuing.
[14:41:03] [Server thread/INFO]: [ArmorStandEditor] SpigotMC: true
[14:41:03] [Server thread/INFO]: Registering Scoreboards required for Glowing Effects when Disabling Slots...
[14:41:03] [Server thread/INFO]: [ArmorStandEditor] ================================
[14:41:03] [pool-63-thread-1/INFO]: [DiscordSRV] DiscordSRV is up-to-date. (9d4734818ab27069d76f264a4cda74a699806770)
[14:41:03] [Server thread/INFO]: [spark] Starting background profiler...
[14:41:04] [Server thread/INFO]: Done preparing level "world" (22.204s)
[14:41:04] [Server thread/INFO]: Running delayed init tasks
[14:41:04] [Craft Scheduler Thread - 7 - ViaVersion/INFO]: [ViaVersion] Finished mapping loading, shutting down loader executor.
[14:41:04] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.regions.WorldGuardFeature] Plugin 'WorldGuard' found. Using it now.
[14:41:04] [Server thread/INFO]: [com.fastasyncworldedit.bukkit.FaweBukkit] Attempting to use plugin 'WorldGuard'
[14:41:05] [DiscordSRV - Initialization/INFO]: [DiscordSRV] [JDA] Login Successful!
[14:41:06] [JDA MainWS-ReadThread/INFO]: [DiscordSRV] [JDA] Connected to WebSocket
[14:41:06] [Server thread/INFO]: Loaded 1337 recipes
[14:41:06] [Server thread/INFO]: Loaded 1448 advancements
[14:41:06] [Server thread/INFO]: [CastleSiege] Resuming loading plugin...
[14:41:06] [Server thread/INFO]: [CastleSiege] Loading configuration files...
[14:41:06] [Server thread/INFO]: [CastleSiege] Loaded Vector Adapter
[14:41:07] [JDA MainWS-ReadThread/INFO]: [DiscordSRV] [JDA] Finished Loading!
[14:41:07] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Console forwarding assigned to channel TC:live-console(1171884073036283915)
[14:41:07] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Saved linked accounts in 2ms
[14:41:07] [DiscordSRV - Initialization/INFO]: [DiscordSRV] Enabling LuckPerms hook
[14:41:07] [Server thread/INFO]: [CastleSiege] Loaded YML: plugins/CastleSiege/flags/Conwy.yml
[14:41:07] [DiscordSRV - Initialization/INFO]: [DiscordSRV] 2 alerts registered
[14:41:07] [Server thread/INFO]: [CastleSiege] Loaded YML: plugins/CastleSiege/flags/SoldiersPeak.yml
[14:41:07] [Server thread/INFO]: [CastleSiege] Loaded YML: plugins/CastleSiege/flags/Abrakhan.yml
[14:41:07] [Server thread/INFO]: [CastleSiege] Loaded YML: plugins/CastleSiege/flags/AncientRuins.yml
[14:41:08] [Server thread/INFO]: [CastleSiege] Loaded YML: plugins/CastleSiege/flags/Frostnorst.yml
[14:41:08] [Server thread/INFO]: [CastleSiege] Loaded YML: plugins/CastleSiege/flags/Hommet.yml
[14:41:08] [Server thread/INFO]: [CastleSiege] Loaded YML: plugins/CastleSiege/flags/RoyalCryptsII.yml
[14:41:08] [Server thread/INFO]: [CastleSiege] Loaded YML: plugins/CastleSiege/flags/ToucanMoria.yml
[14:41:08] [Server thread/INFO]: [CastleSiege] Loaded YML: plugins/CastleSiege/flags/Annakarl.yml
[14:41:08] [Server thread/INFO]: [CastleSiege] Loaded YML: plugins/CastleSiege/flags/FantasyMadness-flags.yml
[14:41:08] [Server thread/INFO]: [CastleSiege] Loaded YML: plugins/CastleSiege/flags/SkyHold.yml
[14:41:08] [Server thread/INFO]: [CastleSiege] Loaded YML: plugins/CastleSiege/flags/Toumont.yml
[14:41:08] [Server thread/INFO]: [CastleSiege] Loaded YML: plugins/CastleSiege/flags/Deadmines.yml
[14:41:08] [Server thread/INFO]: [CastleSiege] Loaded YML: plugins/CastleSiege/flags/Ratsnest.yml
[14:41:08] [Server thread/INFO]: [CastleSiege] Loaded YML: plugins/CastleSiege/flags/PirateAmbush-flags.yml
[14:41:08] [Server thread/INFO]: [CastleSiege] Loaded YML: plugins/CastleSiege/flags/Lakeborough.yml
[14:41:08] [Server thread/INFO]: [CastleSiege] Loaded YML: plugins/CastleSiege/flags/FirelandsLinear.yml
[14:41:08] [Server thread/INFO]: [CastleSiege] Loaded YML: plugins/CastleSiege/flags/BestMapEver.yml
[14:41:08] [Server thread/INFO]: [CastleSiege] Loaded YML: plugins/CastleSiege/flags/Gregynog.yml
[14:41:08] [Server thread/INFO]: [CastleSiege] Loaded YML: plugins/CastleSiege/flags/Rumrage.yml
[14:41:08] [Server thread/INFO]: [CastleSiege] Loaded YML: plugins/CastleSiege/flags/Thunderstone.yml
[14:41:08] [Server thread/INFO]: [CastleSiege] Loaded YML: plugins/CastleSiege/flags/HelmsDeep.yml
[14:41:08] [Server thread/INFO]: [CastleSiege] Loaded YML: plugins/CastleSiege/flags/KaerMorhen.yml
[14:41:08] [Server thread/INFO]: [CastleSiege] Loaded YML: plugins/CastleSiege/flags/CastleBlack.yml
[14:41:08] [Server thread/INFO]: [CastleSiege] Loaded YML: plugins/CastleSiege/flags/HallOfHercules.yml
[14:41:08] [Server thread/INFO]: [CastleSiege] Loaded YML: plugins/CastleSiege/flags/Elwynn.yml
[14:41:08] [Server thread/INFO]: [CastleSiege] Loaded YML: plugins/CastleSiege/flags/Falkirk.yml
[14:41:09] [Server thread/INFO]: [CastleSiege] Loaded YML: plugins/CastleSiege/flags/Netherstorm.yml
[14:41:09] [Server thread/INFO]: [CastleSiege] Loaded YML: plugins/CastleSiege/flags/DoorsOfDurin.yml
[14:41:09] [Server thread/INFO]: [CastleSiege] Loaded YML: plugins/CastleSiege/flags/Contario.yml
[14:41:09] [Server thread/INFO]: [CastleSiege] Loaded YML: plugins/CastleSiege/flags/Havana.yml
[14:41:09] [Server thread/INFO]: [CastleSiege] Loaded YML: plugins/CastleSiege/flags/Firelands.yml
[14:41:09] [Server thread/INFO]: [CastleSiege] Loaded flags
[14:41:09] [Server thread/INFO]: [CastleSiege] Loaded YML: plugins/CastleSiege/doors/Conwy.yml
[14:41:09] [Server thread/INFO]: [CastleSiege] Loaded YML: plugins/CastleSiege/doors/Abrakhan.yml
[14:41:09] [Server thread/INFO]: [CastleSiege] Loaded YML: plugins/CastleSiege/doors/Frostnorst.yml
[14:41:09] [Server thread/INFO]: [CastleSiege] Loaded YML: plugins/CastleSiege/doors/Hommet.yml
[14:41:09] [Server thread/INFO]: [CastleSiege] Loaded YML: plugins/CastleSiege/doors/Annakarl.yml
[14:41:09] [Server thread/INFO]: [CastleSiege] Loaded YML: plugins/CastleSiege/doors/Toumont.yml
[14:41:09] [Server thread/INFO]: [CastleSiege] Loaded YML: plugins/CastleSiege/doors/Ratsnest.yml
[14:41:09] [Server thread/INFO]: [CastleSiege] Loaded YML: plugins/CastleSiege/doors/Skyhold.yml
[14:41:09] [Server thread/INFO]: [CastleSiege] Loaded YML: plugins/CastleSiege/doors/Lakeborough.yml
[14:41:09] [Server thread/INFO]: [CastleSiege] Loaded YML: plugins/CastleSiege/doors/FirelandsLinear.yml
[14:41:09] [Server thread/INFO]: [CastleSiege] Loaded YML: plugins/CastleSiege/doors/Rumrage.yml
[14:41:09] [Server thread/INFO]: [CastleSiege] Loaded YML: plugins/CastleSiege/doors/HelmsDeep.yml
[14:41:09] [Server thread/INFO]: [CastleSiege] Loaded YML: plugins/CastleSiege/doors/KaerMorhen.yml
[14:41:09] [Server thread/INFO]: [CastleSiege] Loaded YML: plugins/CastleSiege/doors/soldier's-peak.yml
[14:41:09] [Server thread/INFO]: [CastleSiege] Loaded YML: plugins/CastleSiege/doors/Gregynog-doors.yml
[14:41:09] [Server thread/INFO]: [CastleSiege] Loaded YML: plugins/CastleSiege/doors/Contario.yml
[14:41:09] [Server thread/INFO]: [CastleSiege] Loaded YML: plugins/CastleSiege/doors/Firelands.yml
[14:41:09] [Server thread/INFO]: [CastleSiege] Loaded doors
[14:41:09] [Server thread/INFO]: [CastleSiege] Loaded YML: plugins/CastleSiege/gates/Conwy.yml
[14:41:09] [Server thread/INFO]: [CastleSiege] Loaded YML: plugins/CastleSiege/gates/Abrakhan.yml
[14:41:09] [Server thread/INFO]: [CastleSiege] Loaded YML: plugins/CastleSiege/gates/Frostnorst.yml
[14:41:09] [Server thread/INFO]: [CastleSiege] Loaded YML: plugins/CastleSiege/gates/Hommet.yml
[14:41:09] [Server thread/INFO]: [CastleSiege] Loaded YML: plugins/CastleSiege/gates/Annakarl.yml
[14:41:09] [Server thread/INFO]: [CastleSiege] Loaded YML: plugins/CastleSiege/gates/SkyHold.yml
[14:41:09] [Server thread/INFO]: [CastleSiege] Loaded YML: plugins/CastleSiege/gates/Toumont.yml
[14:41:09] [Server thread/INFO]: [CastleSiege] Loaded YML: plugins/CastleSiege/gates/Thunderstone.yml
[14:41:09] [Server thread/INFO]: [CastleSiege] Loaded YML: plugins/CastleSiege/gates/HelmsDeep.yml
[14:41:09] [Server thread/INFO]: [CastleSiege] Loaded YML: plugins/CastleSiege/gates/KaerMorhen.yml
[14:41:09] [Server thread/INFO]: [CastleSiege] Loaded YML: plugins/CastleSiege/gates/CastleBlack.yml
[14:41:09] [Server thread/INFO]: [CastleSiege] Loaded YML: plugins/CastleSiege/gates/soldier's-peak.yml
[14:41:09] [Server thread/INFO]: [CastleSiege] Loaded YML: plugins/CastleSiege/gates/Netherstorm.yml
[14:41:09] [Server thread/INFO]: [CastleSiege] Loaded gates
[14:41:09] [Server thread/INFO]: [CastleSiege] Loaded YML: plugins/CastleSiege/cores/MoriaCore.yml
[14:41:09] [Server thread/INFO]: [CastleSiege] Loaded cores
[14:41:09] [Server thread/INFO]: [CastleSiege] Loaded YML: plugins/CastleSiege/catapults/catapults.yml
[14:41:09] [Server thread/INFO]: [CastleSiege] Loaded catapults
[14:41:09] [Server thread/INFO]: [CastleSiege] Loaded YML: plugins/CastleSiege/cannons/RumrageCannons.yml
[14:41:09] [Server thread/INFO]: [CastleSiege] Loaded cannons
[14:41:09] [Server thread/INFO]: [CastleSiege] Loaded YML: plugins/CastleSiege/maps/Conwy.yml
[14:41:09] [Server thread/INFO]: [CastleSiege] Loaded YML: plugins/CastleSiege/maps/SoldiersPeak.yml
[14:41:09] [Server thread/INFO]: [CastleSiege] Loaded YML: plugins/CastleSiege/maps/Abrakhan.yml
[14:41:09] [Server thread/INFO]: [CastleSiege] Loaded YML: plugins/CastleSiege/maps/MoriaCore.yml
[14:41:09] [Server thread/INFO]: [CastleSiege] Loaded YML: plugins/CastleSiege/maps/Hommet.yml
[14:41:09] [Server thread/INFO]: [CastleSiege] Loaded YML: plugins/CastleSiege/maps/HallsOfHerakles.yml
[14:41:09] [Server thread/INFO]: [CastleSiege] Loaded YML: plugins/CastleSiege/maps/FantasyMadness.yml
[14:41:09] [Server thread/INFO]: [CastleSiege] Loaded YML: plugins/CastleSiege/maps/Annakarl.yml
[14:41:09] [Server thread/INFO]: [CastleSiege] Loaded YML: plugins/CastleSiege/maps/Toumont.yml
[14:41:09] [Server thread/INFO]: [CastleSiege] Loaded YML: plugins/CastleSiege/maps/Skyhold.yml
[14:41:09] [Server thread/INFO]: [CastleSiege] Loaded YML: plugins/CastleSiege/maps/Lakeborough.yml
[14:41:09] [Server thread/INFO]: [CastleSiege] Loaded YML: plugins/CastleSiege/maps/Rumrage.yml
[14:41:09] [Server thread/INFO]: [CastleSiege] Loaded YML: plugins/CastleSiege/maps/PirateAmbush-map.yml
[14:41:09] [Server thread/INFO]: [CastleSiege] Loaded YML: plugins/CastleSiege/maps/KaerMorhen.yml
[14:41:09] [Server thread/INFO]: [CastleSiege] Loaded YML: plugins/CastleSiege/maps/Contario.yml
[14:41:09] [Server thread/INFO]: [CastleSiege] Loaded YML: plugins/CastleSiege/maps/Helmsdeep.yml
[14:41:09] [Server thread/INFO]: [CastleSiege] Loaded maps
[14:41:09] [Server thread/INFO]: [CastleSiege] Loaded config.yml
[14:41:09] [Server thread/INFO]: [CastleSiege] Loading maps from configuration...
[14:41:09] [Server thread/INFO]: Preparing start region for dimension minecraft:conwy
[14:41:10] [Server thread/INFO]: Preparing spawn area: 100%
[14:41:10] [Server thread/INFO]: Preparing spawn area: 100%
[14:41:10] [Server thread/INFO]: Time elapsed: 883 ms
[14:41:10] [Server thread/INFO]: [WorldGuard] (Conwy) TNT ignition is PERMITTED.
[14:41:10] [Server thread/INFO]: [WorldGuard] (Conwy) Lighters are PERMITTED.
[14:41:10] [Server thread/INFO]: [WorldGuard] (Conwy) Lava fire is PERMITTED.
[14:41:10] [Server thread/INFO]: [WorldGuard] (Conwy) Fire spread is UNRESTRICTED.
[14:41:10] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Conwy'
[14:41:10] [Server thread/INFO]: [OldCombatMechanics] Loaded configured world Conwy
[14:41:10] [Server thread/INFO]: Preparing start region for dimension minecraft:soldierspeak
[14:41:10] [Server thread/INFO]: Time elapsed: 0 ms
[14:41:10] [Server thread/INFO]: [WorldGuard] (SoldiersPeak) TNT ignition is PERMITTED.
[14:41:10] [Server thread/INFO]: [WorldGuard] (SoldiersPeak) Lighters are PERMITTED.
[14:41:10] [Server thread/INFO]: [WorldGuard] (SoldiersPeak) Lava fire is PERMITTED.
[14:41:10] [Server thread/INFO]: [WorldGuard] (SoldiersPeak) Fire spread is UNRESTRICTED.
[14:41:10] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'SoldiersPeak'
[14:41:11] [Server thread/INFO]: [OldCombatMechanics] Loaded configured world SoldiersPeak
[14:41:11] [Server thread/INFO]: Preparing start region for dimension minecraft:abrakhan
[14:41:11] [Server thread/INFO]: Time elapsed: 0 ms
[14:41:11] [Server thread/INFO]: [WorldGuard] (Abrakhan) TNT ignition is PERMITTED.
[14:41:11] [Server thread/INFO]: [WorldGuard] (Abrakhan) Lighters are PERMITTED.
[14:41:11] [Server thread/INFO]: [WorldGuard] (Abrakhan) Lava fire is PERMITTED.
[14:41:11] [Server thread/INFO]: [WorldGuard] (Abrakhan) Fire spread is UNRESTRICTED.
[14:41:11] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Abrakhan'
[14:41:11] [Server thread/INFO]: [OldCombatMechanics] Loaded configured world Abrakhan
[14:41:11] [Server thread/INFO]: Preparing start region for dimension minecraft:moriacore
[14:41:11] [Server thread/INFO]: Time elapsed: 0 ms
[14:41:11] [Server thread/INFO]: [WorldGuard] (MoriaCore) TNT ignition is PERMITTED.
[14:41:11] [Server thread/INFO]: [WorldGuard] (MoriaCore) Lighters are PERMITTED.
[14:41:11] [Server thread/INFO]: [WorldGuard] (MoriaCore) Lava fire is PERMITTED.
[14:41:11] [Server thread/INFO]: [WorldGuard] (MoriaCore) Fire spread is UNRESTRICTED.
[14:41:11] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'MoriaCore'
[14:41:11] [Server thread/INFO]: [OldCombatMechanics] Loaded configured world MoriaCore
[14:41:11] [Server thread/INFO]: Preparing start region for dimension minecraft:hommet
[14:41:11] [Server thread/INFO]: Time elapsed: 0 ms
[14:41:11] [Server thread/INFO]: [WorldGuard] (Hommet) TNT ignition is PERMITTED.
[14:41:11] [Server thread/INFO]: [WorldGuard] (Hommet) Lighters are PERMITTED.
[14:41:11] [Server thread/INFO]: [WorldGuard] (Hommet) Lava fire is PERMITTED.
[14:41:11] [Server thread/INFO]: [WorldGuard] (Hommet) Fire spread is UNRESTRICTED.
[14:41:11] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Hommet'
[14:41:11] [Server thread/INFO]: [OldCombatMechanics] Loaded configured world Hommet
[14:41:12] [Server thread/INFO]: Preparing start region for dimension minecraft:hallofherakles
[14:41:12] [Server thread/INFO]: Preparing spawn area: 100%
[14:41:12] [Server thread/INFO]: Preparing spawn area: 100%
[14:41:12] [Server thread/INFO]: Time elapsed: 795 ms
[14:41:12] [Server thread/INFO]: [WorldGuard] (HallOfHerakles) TNT ignition is PERMITTED.
[14:41:12] [Server thread/INFO]: [WorldGuard] (HallOfHerakles) Lighters are PERMITTED.
[14:41:12] [Server thread/INFO]: [WorldGuard] (HallOfHerakles) Lava fire is PERMITTED.
[14:41:12] [Server thread/INFO]: [WorldGuard] (HallOfHerakles) Fire spread is UNRESTRICTED.
[14:41:12] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'HallOfHerakles'
[14:41:12] [Server thread/INFO]: [OldCombatMechanics] Loaded configured world HallOfHerakles
[14:41:13] [Server thread/INFO]: Preparing start region for dimension minecraft:fantasymadness
[14:41:13] [Server thread/INFO]: Time elapsed: 0 ms
[14:41:13] [Server thread/INFO]: [WorldGuard] (FantasyMadness) TNT ignition is PERMITTED.
[14:41:13] [Server thread/INFO]: [WorldGuard] (FantasyMadness) Lighters are PERMITTED.
[14:41:13] [Server thread/INFO]: [WorldGuard] (FantasyMadness) Lava fire is PERMITTED.
[14:41:13] [Server thread/INFO]: [WorldGuard] (FantasyMadness) Fire spread is UNRESTRICTED.
[14:41:13] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'FantasyMadness'
[14:41:13] [Server thread/INFO]: [OldCombatMechanics] Loaded configured world FantasyMadness
[14:41:14] [Server thread/INFO]: Preparing start region for dimension minecraft:annakarl
[14:41:15] [Server thread/INFO]: Preparing spawn area: 100%
[14:41:15] [Server thread/INFO]: Preparing spawn area: 100%
[14:41:15] [Server thread/INFO]: Time elapsed: 716 ms
[14:41:15] [Server thread/INFO]: [WorldGuard] (Annakarl) TNT ignition is PERMITTED.
[14:41:15] [Server thread/INFO]: [WorldGuard] (Annakarl) Lighters are PERMITTED.
[14:41:15] [Server thread/INFO]: [WorldGuard] (Annakarl) Lava fire is PERMITTED.
[14:41:15] [Server thread/INFO]: [WorldGuard] (Annakarl) Fire spread is UNRESTRICTED.
[14:41:15] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Annakarl'
[14:41:15] [Server thread/INFO]: [OldCombatMechanics] Loaded configured world Annakarl
[14:41:15] [Server thread/INFO]: Preparing start region for dimension minecraft:toumont
[14:41:16] [Server thread/INFO]: Preparing spawn area: 100%
[14:41:16] [Server thread/INFO]: Preparing spawn area: 100%
[14:41:16] [Server thread/INFO]: Time elapsed: 907 ms
[14:41:16] [Server thread/INFO]: [WorldGuard] (Toumont) TNT ignition is PERMITTED.
[14:41:16] [Server thread/INFO]: [WorldGuard] (Toumont) Lighters are PERMITTED.
[14:41:16] [Server thread/INFO]: [WorldGuard] (Toumont) Lava fire is PERMITTED.
[14:41:16] [Server thread/INFO]: [WorldGuard] (Toumont) Fire spread is UNRESTRICTED.
[14:41:16] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Toumont'
[14:41:16] [Server thread/INFO]: [OldCombatMechanics] Loaded configured world Toumont
[14:41:17] [Server thread/INFO]: Preparing start region for dimension minecraft:skyhold
[14:41:17] [Server thread/INFO]: Time elapsed: 0 ms
[14:41:17] [Server thread/INFO]: [WorldGuard] (Skyhold) TNT ignition is PERMITTED.
[14:41:17] [Server thread/INFO]: [WorldGuard] (Skyhold) Lighters are PERMITTED.
[14:41:17] [Server thread/INFO]: [WorldGuard] (Skyhold) Lava fire is PERMITTED.
[14:41:17] [Server thread/INFO]: [WorldGuard] (Skyhold) Fire spread is UNRESTRICTED.
[14:41:17] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Skyhold'
[14:41:17] [Server thread/INFO]: [OldCombatMechanics] Loaded configured world Skyhold
[14:41:18] [Server thread/INFO]: Preparing start region for dimension minecraft:lakeborough
[14:41:18] [Server thread/INFO]: Time elapsed: 0 ms
[14:41:18] [Server thread/INFO]: [WorldGuard] (Lakeborough) TNT ignition is PERMITTED.
[14:41:18] [Server thread/INFO]: [WorldGuard] (Lakeborough) Lighters are PERMITTED.
[14:41:18] [Server thread/INFO]: [WorldGuard] (Lakeborough) Lava fire is PERMITTED.
[14:41:18] [Server thread/INFO]: [WorldGuard] (Lakeborough) Fire spread is UNRESTRICTED.
[14:41:18] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Lakeborough'
[14:41:18] [Server thread/INFO]: [OldCombatMechanics] Loaded configured world Lakeborough
[14:41:18] [Server thread/INFO]: Preparing start region for dimension minecraft:rumrage
[14:41:18] [Server thread/INFO]: Time elapsed: 0 ms
[14:41:18] [Server thread/INFO]: [WorldGuard] (Rumrage) TNT ignition is PERMITTED.
[14:41:18] [Server thread/INFO]: [WorldGuard] (Rumrage) Lighters are PERMITTED.
[14:41:18] [Server thread/INFO]: [WorldGuard] (Rumrage) Lava fire is PERMITTED.
[14:41:18] [Server thread/INFO]: [WorldGuard] (Rumrage) Fire spread is UNRESTRICTED.
[14:41:18] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Rumrage'
[14:41:18] [Server thread/INFO]: [OldCombatMechanics] Loaded configured world Rumrage
[14:41:19] [Server thread/INFO]: Preparing start region for dimension minecraft:pirateambush
[14:41:19] [Server thread/INFO]: Preparing spawn area: 100%
[14:41:19] [Server thread/INFO]: Time elapsed: 304 ms
[14:41:19] [Server thread/INFO]: [WorldGuard] (PirateAmbush) TNT ignition is PERMITTED.
[14:41:19] [Server thread/INFO]: [WorldGuard] (PirateAmbush) Lighters are PERMITTED.
[14:41:19] [Server thread/INFO]: [WorldGuard] (PirateAmbush) Lava fire is PERMITTED.
[14:41:19] [Server thread/INFO]: [WorldGuard] (PirateAmbush) Fire spread is UNRESTRICTED.
[14:41:19] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'PirateAmbush'
[14:41:19] [Server thread/INFO]: [OldCombatMechanics] Loaded configured world PirateAmbush
[14:41:20] [Server thread/INFO]: Preparing start region for dimension minecraft:kaermorhen
[14:41:20] [Server thread/INFO]: Time elapsed: 1 ms
[14:41:20] [Server thread/INFO]: [WorldGuard] (KaerMorhen) TNT ignition is PERMITTED.
[14:41:20] [Server thread/INFO]: [WorldGuard] (KaerMorhen) Lighters are PERMITTED.
[14:41:20] [Server thread/INFO]: [WorldGuard] (KaerMorhen) Lava fire is PERMITTED.
[14:41:20] [Server thread/INFO]: [WorldGuard] (KaerMorhen) Fire spread is UNRESTRICTED.
[14:41:20] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'KaerMorhen'
[14:41:20] [Server thread/INFO]: [OldCombatMechanics] Loaded configured world KaerMorhen
[14:41:20] [Server thread/INFO]: Preparing start region for dimension minecraft:contario
[14:41:20] [Server thread/INFO]: Time elapsed: 1 ms
[14:41:20] [Server thread/INFO]: [WorldGuard] (Contario) TNT ignition is PERMITTED.
[14:41:20] [Server thread/INFO]: [WorldGuard] (Contario) Lighters are PERMITTED.
[14:41:20] [Server thread/INFO]: [WorldGuard] (Contario) Lava fire is PERMITTED.
[14:41:20] [Server thread/INFO]: [WorldGuard] (Contario) Fire spread is UNRESTRICTED.
[14:41:20] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'Contario'
[14:41:20] [Server thread/INFO]: [OldCombatMechanics] Loaded configured world Contario
[14:41:20] [Server thread/INFO]: Preparing start region for dimension minecraft:helmsdeep
[14:41:20] [Server thread/INFO]: Time elapsed: 0 ms
[14:41:20] [Server thread/INFO]: [WorldGuard] (HelmsDeep) TNT ignition is PERMITTED.
[14:41:20] [Server thread/INFO]: [WorldGuard] (HelmsDeep) Lighters are PERMITTED.
[14:41:20] [Server thread/INFO]: [WorldGuard] (HelmsDeep) Lava fire is PERMITTED.
[14:41:20] [Server thread/INFO]: [WorldGuard] (HelmsDeep) Fire spread is UNRESTRICTED.
[14:41:20] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'HelmsDeep'
[14:41:20] [Server thread/INFO]: [OldCombatMechanics] Loaded configured world HelmsDeep
[14:41:20] [Server thread/INFO]: Preparing start region for dimension minecraft:duelsmap
[14:41:20] [Server thread/INFO]: Time elapsed: 0 ms
[14:41:20] [Server thread/INFO]: [WorldGuard] (DuelsMap) TNT ignition is PERMITTED.
[14:41:20] [Server thread/INFO]: [WorldGuard] (DuelsMap) Lighters are PERMITTED.
[14:41:20] [Server thread/INFO]: [WorldGuard] (DuelsMap) Lava fire is PERMITTED.
[14:41:20] [Server thread/INFO]: [WorldGuard] (DuelsMap) Fire spread is UNRESTRICTED.
[14:41:20] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'DuelsMap'
[14:41:20] [Server thread/INFO]: [OldCombatMechanics] Loaded configured world DuelsMap
[14:41:20] [Server thread/INFO]: Preparing start region for dimension minecraft:shopdraft
[14:41:20] [Server thread/INFO]: Time elapsed: 0 ms
[14:41:20] [Server thread/INFO]: [WorldGuard] (ShopDraft) TNT ignition is PERMITTED.
[14:41:20] [Server thread/INFO]: [WorldGuard] (ShopDraft) Lighters are PERMITTED.
[14:41:20] [Server thread/INFO]: [WorldGuard] (ShopDraft) Lava fire is PERMITTED.
[14:41:20] [Server thread/INFO]: [WorldGuard] (ShopDraft) Fire spread is UNRESTRICTED.
[14:41:20] [Server thread/INFO]: [WorldGuard] Loaded configuration for world 'ShopDraft'
[14:41:20] [Server thread/INFO]: [OldCombatMechanics] Loaded configured world ShopDraft
[14:41:20] [Server thread/INFO]: [CastleSiege] Loading game configuration...
[14:41:20] [Server thread/INFO]: [CastleSiege] Connecting to database...
[14:41:20] [Server thread/INFO]: [ConwyMC] Successfully connected to the ConwyMC MySQL Database!
[14:41:20] [Server thread/INFO]: [CastleSiege] <!> Database is connected! <!>
[14:41:21] [Server thread/INFO]: [WorldGuard] Registering session handler me.greenfoot5.castlesiege.maps.objects.RegionHandler
[14:41:21] [Server thread/INFO]: Environment: Environment[sessionHost=https://sessionserver.mojang.com, servicesHost=https://api.minecraftservices.com, name=PROD]
[14:41:22] [Server thread/INFO]: [CastleSiege] Spawning secret items if there are any.
[14:41:22] [Server thread/INFO]: [CastleSiege] Plugin has been enabled!
[14:41:22] [Server thread/INFO]: Done (71.674s)! For help, type "help"
[14:41:22] [Craft Scheduler Thread - 12 - CastleSiege/INFO]: [i]  A 0% coin booster for -13239d -14h -9m -22s has been activated!
[14:41:22] [Craft Scheduler Thread - 12 - CastleSiege/INFO]: [i] The total coin multiplier is now 1.0.
[14:41:22] [DiscordSRV - JDA Callback 0/INFO]: [DiscordSRV] Cleared all pre-existing slash commands in 1/1 guilds (0 cancelled)
[14:41:25] [Server thread/WARN]: [VotingPlugin] Failed to hook into vault economy
[14:41:25] [Server thread/WARN]: [VotingPlugin] Failed to hook into vault permissions
[14:41:26] [Craft Scheduler Thread - 18 - VotifierPlus/INFO]: [VotifierPlus] VotifierPlus is up to date! Version: 1.3
[14:41:30] [Craft Scheduler Thread - 17 - VotingPlugin/INFO]: [VotingPlugin] VotingPlugin has an update available! Your Version: 6.18 New Version: 6.18.2
[14:41:36] [User Authenticator #0/INFO]: UUID of player Greenfoot5 is 4bdaaa36-d4ab-44eb-833e-c34bc86f151d
[14:41:37] [Server thread/INFO]: [OldCombatMechanics] [DEBUG] [ModuleAttackCooldown] Setting attack speed to 4.00 (was: 4.00) for Greenfoot5 in mode new
[14:41:37] [Server thread/INFO]: [VotingPlugin] Login: Greenfoot5 (4bdaaa36-d4ab-44eb-833e-c34bc86f151d)
[14:41:37] [Server thread/INFO]: [OldCombatMechanics] [DEBUG] [ModuleAttackCooldown] Setting attack speed to 4.00 (was: 4.00) for Greenfoot5 in mode new
[14:41:37] [Server thread/INFO]: Don't forget to vote! It really helps us out!
[14:41:38] [Server thread/INFO]: Greenfoot5[/145.40.151.118:46756] logged in with entity id 346 at ([Contario]323.0, 35.0, -68.0)
[14:41:38] [Craft Scheduler Thread - 17 - ConwyMC/ERROR]: [ConwyMC] Error in isTop for 4bdaaa36-d4ab-44eb-833e-c34bc86f151d
[14:41:38] [Craft Scheduler Thread - 17 - ConwyMC/ERROR]: [ConwyMC] After end of result set
[14:41:38] [Craft Scheduler Thread - 17 - ConwyMC/ERROR]: [ConwyMC] Error in isTop for 4bdaaa36-d4ab-44eb-833e-c34bc86f151d
[14:41:38] [Craft Scheduler Thread - 17 - ConwyMC/ERROR]: [ConwyMC] After end of result set
[14:41:40] [Craft Scheduler Thread - 13 - CastleSiege/INFO]: [!] The server is currently in BETA. Any progress made will be deleted on release (excluding cosmetics & purchased boosters)
[14:41:53] [Server thread/INFO]: Greenfoot5 issued server command: /togglefree
[14:41:53] [Craft Scheduler Thread - 4 - CastleSiege/INFO]: [i] All donator & team kits are now temporarily free!
[14:41:55] [Server thread/INFO]: Greenfoot5 issued server command: /vanguard
[14:42:06] [Server thread/INFO]: Greenfoot5 issued server command: /mm m s Dummy
[14:42:07] [Server thread/INFO]: [OldCombatMechanics] [DEBUG] [EntityDamageByEntityListener] Base: 51.0
[14:42:07] [Server thread/INFO]: [OldCombatMechanics] [DEBUG] [EntityDamageByEntityListener] Weak: 0.0
[14:42:07] [Server thread/INFO]: [OldCombatMechanics] [DEBUG] [EntityDamageByEntityListener] Strength level: 0
[14:42:07] [Server thread/INFO]: [OldCombatMechanics] [DEBUG] [EntityDamageByEntityListener] Strength: 0.0
[14:42:07] [Server thread/INFO]: [OldCombatMechanics] [DEBUG] [EntityDamageByEntityListener] Scale by attack delay: 51.0 *= 0.2 + 1.0^2 * 0.8
[14:42:07] [Server thread/INFO]: [OldCombatMechanics] [DEBUG] [EntityDamageByEntityListener] Crit 51.0 *= 1.0
[14:42:07] [Server thread/INFO]: [OldCombatMechanics] [DEBUG] [EntityDamageByEntityListener] Scale enchantments by attack delay: 0.0 *= 1.0
[14:42:07] [Server thread/INFO]: [OldCombatMechanics] [DEBUG] [EntityDamageByEntityListener] Attack damage (before defence): 51.0
[14:42:07] [Server thread/INFO]: [OldCombatMechanics] [DEBUG] [EntityDamageByEntityListener] Set last damage to 0
[14:42:25] [Server thread/INFO]: Greenfoot5 issued server command: /effect give Greenfoot5 minecraft:strength 10 0
[14:42:25] [Server thread/INFO]: [Greenfoot5: Applied effect Strength to Greenfoot5]
[14:42:25] [Server thread/INFO]: [OldCombatMechanics] [DEBUG] [EntityDamageByEntityListener] Set last damage back to 51.0
[14:42:25] [Server thread/INFO]: [OldCombatMechanics] [DEBUG] [EntityDamageByEntityListener] Base: 51.0
[14:42:25] [Server thread/INFO]: [OldCombatMechanics] [DEBUG] [EntityDamageByEntityListener] Weak: 0.0
[14:42:25] [Server thread/INFO]: [OldCombatMechanics] [DEBUG] [EntityDamageByEntityListener] Strength level: 1
[14:42:25] [Server thread/INFO]: [OldCombatMechanics] [DEBUG] [EntityDamageByEntityListener] Strength: 3.0
[14:42:25] [Server thread/INFO]: [OldCombatMechanics] [DEBUG] [EntityDamageByEntityListener] Scale by attack delay: 54.0 *= 0.2 + 1.0^2 * 0.8
[14:42:25] [Server thread/INFO]: [OldCombatMechanics] [DEBUG] [EntityDamageByEntityListener] Crit 54.0 *= 1.0
[14:42:25] [Server thread/INFO]: [OldCombatMechanics] [DEBUG] [EntityDamageByEntityListener] Scale enchantments by attack delay: 0.0 *= 1.0
[14:42:25] [Server thread/INFO]: [OldCombatMechanics] [DEBUG] [EntityDamageByEntityListener] Attack damage (before defence): 54.0
[14:42:26] [Server thread/INFO]: [OldCombatMechanics] [DEBUG] [EntityDamageByEntityListener] Set last damage to 0
[14:42:28] [Server thread/INFO]: Greenfoot5 issued server command: /effect give Greenfoot5 minecraft:strength 10 1
[14:42:28] [Server thread/INFO]: [Greenfoot5: Applied effect Strength to Greenfoot5]
[14:42:29] [Server thread/INFO]: [OldCombatMechanics] [DEBUG] [EntityDamageByEntityListener] Set last damage back to 54.0
[14:42:29] [Server thread/INFO]: [OldCombatMechanics] [DEBUG] [EntityDamageByEntityListener] Base: 51.0
[14:42:29] [Server thread/INFO]: [OldCombatMechanics] [DEBUG] [EntityDamageByEntityListener] Weak: 0.0
[14:42:29] [Server thread/INFO]: [OldCombatMechanics] [DEBUG] [EntityDamageByEntityListener] Strength level: 2
[14:42:29] [Server thread/INFO]: [OldCombatMechanics] [DEBUG] [EntityDamageByEntityListener] Strength: 12.0
[14:42:29] [Server thread/INFO]: [OldCombatMechanics] [DEBUG] [EntityDamageByEntityListener] Scale by attack delay: 63.0 *= 0.2 + 1.0^2 * 0.8
[14:42:29] [Server thread/INFO]: [OldCombatMechanics] [DEBUG] [EntityDamageByEntityListener] Crit 63.0 *= 1.0
[14:42:29] [Server thread/INFO]: [OldCombatMechanics] [DEBUG] [EntityDamageByEntityListener] Scale enchantments by attack delay: 0.0 *= 1.0
[14:42:29] [Server thread/INFO]: [OldCombatMechanics] [DEBUG] [EntityDamageByEntityListener] Attack damage (before defence): 63.0
[14:42:29] [Server thread/INFO]: [OldCombatMechanics] [DEBUG] [EntityDamageByEntityListener] Set last damage to 0
[14:43:01] [Server thread/INFO]: [OldCombatMechanics] [DEBUG] [EntityDamageByEntityListener] Attack damage (before defence): 4.0
[14:43:01] [Server thread/INFO]: [OldCombatMechanics] [DEBUG] [ModuleOldArmourStrength] BASE: 4.0
[14:43:01] [Server thread/INFO]: [OldCombatMechanics] [DEBUG] [ModuleOldArmourStrength] BLOCKING: null
[14:43:01] [Server thread/INFO]: [OldCombatMechanics] [DEBUG] [ModuleOldArmourStrength] ARMOUR: -0.0
[14:43:01] [Server thread/INFO]: [OldCombatMechanics] [DEBUG] [ModuleOldArmourStrength] RESISTANCE: -0.0
[14:43:01] [Server thread/INFO]: [OldCombatMechanics] [DEBUG] [ModuleOldArmourStrength] ARMOUR ENCHS: -0.0
[14:43:01] [Server thread/INFO]: [OldCombatMechanics] [DEBUG] [ModuleOldArmourStrength] ABSORPTION: -0.0
[14:43:01] [Server thread/INFO]: [OldCombatMechanics] [DEBUG] [ModuleOldArmourStrength] Final damage after defence calc: 4.0
[14:43:01] [Server thread/INFO]: [OldCombatMechanics] [DEBUG] [EntityDamageByEntityListener] Non-entity damage, using default last damage
[14:43:03] [Server thread/INFO]: [OldCombatMechanics] [DEBUG] [EntityDamageByEntityListener] Attack damage (before defence): 1.0
[14:43:03] [Server thread/INFO]: [OldCombatMechanics] [DEBUG] [ModuleOldArmourStrength] BASE: 1.0
[14:43:03] [Server thread/INFO]: [OldCombatMechanics] [DEBUG] [ModuleOldArmourStrength] BLOCKING: null
[14:43:03] [Server thread/INFO]: [OldCombatMechanics] [DEBUG] [ModuleOldArmourStrength] ARMOUR: 0.0
[14:43:03] [Server thread/INFO]: [OldCombatMechanics] [DEBUG] [ModuleOldArmourStrength] RESISTANCE: -0.0
[14:43:03] [Server thread/INFO]: [OldCombatMechanics] [DEBUG] [ModuleOldArmourStrength] ARMOUR ENCHS: -0.0
[14:43:03] [Server thread/INFO]: [OldCombatMechanics] [DEBUG] [ModuleOldArmourStrength] ABSORPTION: -0.0
[14:43:03] [Server thread/INFO]: [OldCombatMechanics] [DEBUG] [ModuleOldArmourStrength] Final damage after defence calc: 1.0
[14:43:03] [Server thread/INFO]: [OldCombatMechanics] [DEBUG] [EntityDamageByEntityListener] Non-entity damage, using default last damage
[14:43:04] [Server thread/INFO]: [OldCombatMechanics] [DEBUG] [EntityDamageByEntityListener] Attack damage (before defence): 1.0
[14:43:04] [Server thread/INFO]: [OldCombatMechanics] [DEBUG] [ModuleOldArmourStrength] BASE: 1.0
[14:43:04] [Server thread/INFO]: [OldCombatMechanics] [DEBUG] [ModuleOldArmourStrength] BLOCKING: null
[14:43:04] [Server thread/INFO]: [OldCombatMechanics] [DEBUG] [ModuleOldArmourStrength] ARMOUR: 0.0
[14:43:04] [Server thread/INFO]: [OldCombatMechanics] [DEBUG] [ModuleOldArmourStrength] RESISTANCE: -0.0
[14:43:04] [Server thread/INFO]: [OldCombatMechanics] [DEBUG] [ModuleOldArmourStrength] ARMOUR ENCHS: -0.0
[14:43:04] [Server thread/INFO]: [OldCombatMechanics] [DEBUG] [ModuleOldArmourStrength] ABSORPTION: -0.0
[14:43:04] [Server thread/INFO]: [OldCombatMechanics] [DEBUG] [ModuleOldArmourStrength] Final damage after defence calc: 1.0
[14:43:04] [Server thread/INFO]: [OldCombatMechanics] [DEBUG] [EntityDamageByEntityListener] Non-entity damage, using default last damage
[14:44:22] [Server thread/INFO]: [OldCombatMechanics] [DEBUG] [EntityDamageByEntityListener] Attack damage (before defence): 4.0
[14:44:22] [Server thread/INFO]: [OldCombatMechanics] [DEBUG] [ModuleOldArmourStrength] BASE: 4.0
[14:44:22] [Server thread/INFO]: [OldCombatMechanics] [DEBUG] [ModuleOldArmourStrength] BLOCKING: null
[14:44:22] [Server thread/INFO]: [OldCombatMechanics] [DEBUG] [ModuleOldArmourStrength] ARMOUR: -0.0
[14:44:22] [Server thread/INFO]: [OldCombatMechanics] [DEBUG] [ModuleOldArmourStrength] RESISTANCE: -0.0
[14:44:22] [Server thread/INFO]: [OldCombatMechanics] [DEBUG] [ModuleOldArmourStrength] ARMOUR ENCHS: -0.0
[14:44:22] [Server thread/INFO]: [OldCombatMechanics] [DEBUG] [ModuleOldArmourStrength] ABSORPTION: -0.0
[14:44:22] [Server thread/INFO]: [OldCombatMechanics] [DEBUG] [ModuleOldArmourStrength] Final damage after defence calc: 4.0
[14:44:22] [Server thread/INFO]: [OldCombatMechanics] [DEBUG] [EntityDamageByEntityListener] Non-entity damage, using default last damage
[14:44:22] [Server thread/INFO]: [OldCombatMechanics] [DEBUG] [EntityDamageByEntityListener] Attack damage (before defence): 4.0
[14:44:22] [Server thread/INFO]: [OldCombatMechanics] [DEBUG] [ModuleOldArmourStrength] BASE: 4.0
[14:44:22] [Server thread/INFO]: [OldCombatMechanics] [DEBUG] [ModuleOldArmourStrength] BLOCKING: null
[14:44:22] [Server thread/INFO]: [OldCombatMechanics] [DEBUG] [ModuleOldArmourStrength] ARMOUR: -0.0
[14:44:22] [Server thread/INFO]: [OldCombatMechanics] [DEBUG] [ModuleOldArmourStrength] RESISTANCE: -0.0
[14:44:22] [Server thread/INFO]: [OldCombatMechanics] [DEBUG] [ModuleOldArmourStrength] ARMOUR ENCHS: -0.0
[14:44:22] [Server thread/INFO]: [OldCombatMechanics] [DEBUG] [ModuleOldArmourStrength] ABSORPTION: -0.0
[14:44:22] [Server thread/INFO]: [OldCombatMechanics] [DEBUG] [ModuleOldArmourStrength] Final damage after defence calc: 4.0
[14:44:22] [Server thread/INFO]: [OldCombatMechanics] [DEBUG] [EntityDamageByEntityListener] Non-entity damage, using default last damage
[14:46:20] [Server thread/INFO]: [i] Viceroys are in the top 10 players to donate to the server. ConwyMC simply wouldn't exist without them!
[14:46:28] [Server thread/INFO]: [OldCombatMechanics] [DEBUG] [EntityDamageByEntityListener] Attack damage (before defence): 4.0
[14:46:28] [Server thread/INFO]: [OldCombatMechanics] [DEBUG] [ModuleOldArmourStrength] BASE: 4.0
[14:46:28] [Server thread/INFO]: [OldCombatMechanics] [DEBUG] [ModuleOldArmourStrength] BLOCKING: null
[14:46:28] [Server thread/INFO]: [OldCombatMechanics] [DEBUG] [ModuleOldArmourStrength] ARMOUR: -0.0
[14:46:28] [Server thread/INFO]: [OldCombatMechanics] [DEBUG] [ModuleOldArmourStrength] RESISTANCE: -0.0
[14:46:28] [Server thread/INFO]: [OldCombatMechanics] [DEBUG] [ModuleOldArmourStrength] ARMOUR ENCHS: -0.0
[14:46:28] [Server thread/INFO]: [OldCombatMechanics] [DEBUG] [ModuleOldArmourStrength] ABSORPTION: -0.0
[14:46:28] [Server thread/INFO]: [OldCombatMechanics] [DEBUG] [ModuleOldArmourStrength] Final damage after defence calc: 4.0
[14:46:28] [Server thread/INFO]: [OldCombatMechanics] [DEBUG] [EntityDamageByEntityListener] Non-entity damage, using default last damage
[14:46:29] [Server thread/INFO]: [OldCombatMechanics] [DEBUG] [EntityDamageByEntityListener] Attack damage (before defence): 1.0
[14:46:29] [Server thread/INFO]: [OldCombatMechanics] [DEBUG] [ModuleOldArmourStrength] BASE: 1.0
[14:46:29] [Server thread/INFO]: [OldCombatMechanics] [DEBUG] [ModuleOldArmourStrength] BLOCKING: null
[14:46:29] [Server thread/INFO]: [OldCombatMechanics] [DEBUG] [ModuleOldArmourStrength] ARMOUR: 0.0
[14:46:29] [Server thread/INFO]: [OldCombatMechanics] [DEBUG] [ModuleOldArmourStrength] RESISTANCE: -0.0
[14:46:29] [Server thread/INFO]: [OldCombatMechanics] [DEBUG] [ModuleOldArmourStrength] ARMOUR ENCHS: -0.0
[14:46:29] [Server thread/INFO]: [OldCombatMechanics] [DEBUG] [ModuleOldArmourStrength] ABSORPTION: -0.0
[14:46:29] [Server thread/INFO]: [OldCombatMechanics] [DEBUG] [ModuleOldArmourStrength] Final damage after defence calc: 1.0
[14:46:29] [Server thread/INFO]: [OldCombatMechanics] [DEBUG] [EntityDamageByEntityListener] Non-entity damage, using default last damage
[14:46:30] [Server thread/INFO]: [OldCombatMechanics] [DEBUG] [EntityDamageByEntityListener] Attack damage (before defence): 1.0
[14:46:30] [Server thread/INFO]: [OldCombatMechanics] [DEBUG] [ModuleOldArmourStrength] BASE: 1.0
[14:46:30] [Server thread/INFO]: [OldCombatMechanics] [DEBUG] [ModuleOldArmourStrength] BLOCKING: null
[14:46:30] [Server thread/INFO]: [OldCombatMechanics] [DEBUG] [ModuleOldArmourStrength] ARMOUR: 0.0
[14:46:30] [Server thread/INFO]: [OldCombatMechanics] [DEBUG] [ModuleOldArmourStrength] RESISTANCE: -0.0
[14:46:30] [Server thread/INFO]: [OldCombatMechanics] [DEBUG] [ModuleOldArmourStrength] ARMOUR ENCHS: -0.0
[14:46:30] [Server thread/INFO]: [OldCombatMechanics] [DEBUG] [ModuleOldArmourStrength] ABSORPTION: -0.0
[14:46:30] [Server thread/INFO]: [OldCombatMechanics] [DEBUG] [ModuleOldArmourStrength] Final damage after defence calc: 1.0
[14:46:30] [Server thread/INFO]: [OldCombatMechanics] [DEBUG] [EntityDamageByEntityListener] Non-entity damage, using default last damage
[14:47:09] [Server thread/INFO]: Greenfoot5 issued server command: /effect give Greenfoot5 minecraft:strength 10 2
[14:47:09] [Server thread/INFO]: [Greenfoot5: Applied effect Strength to Greenfoot5]
[14:47:09] [Server thread/INFO]: [OldCombatMechanics] [DEBUG] [EntityDamageByEntityListener] Set last damage back to 63.0
[14:47:09] [Server thread/INFO]: [OldCombatMechanics] [DEBUG] [EntityDamageByEntityListener] Base: 51.0
[14:47:09] [Server thread/INFO]: [OldCombatMechanics] [DEBUG] [EntityDamageByEntityListener] Weak: 0.0
[14:47:09] [Server thread/INFO]: [OldCombatMechanics] [DEBUG] [EntityDamageByEntityListener] Strength level: 3
[14:47:09] [Server thread/INFO]: [OldCombatMechanics] [DEBUG] [EntityDamageByEntityListener] Strength: 27.0
[14:47:09] [Server thread/INFO]: [OldCombatMechanics] [DEBUG] [EntityDamageByEntityListener] Scale by attack delay: 78.0 *= 0.2 + 1.0^2 * 0.8
[14:47:09] [Server thread/INFO]: [OldCombatMechanics] [DEBUG] [EntityDamageByEntityListener] Crit 78.0 *= 1.0
[14:47:09] [Server thread/INFO]: [OldCombatMechanics] [DEBUG] [EntityDamageByEntityListener] Scale enchantments by attack delay: 0.0 *= 1.0
[14:47:09] [Server thread/INFO]: [OldCombatMechanics] [DEBUG] [EntityDamageByEntityListener] Attack damage (before defence): 78.0
[14:47:09] [Server thread/INFO]: [OldCombatMechanics] [DEBUG] [EntityDamageByEntityListener] Set last damage to 0
[14:51:20] [Server thread/INFO]: [i] Alchemists can give you many varieties of boosts and also heal you!

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

No branches or pull requests

1 participant