[Bug]: Incompatible with Astemir's Forestcraft
FeikoJoosten opened this issue · 2 comments
What happened?
Crashes after it has complete loading the world.
Game Version
1.16
What platform are you using?
Forge
Platform version
2.3.4
Config File
# General options for the bot
[general]
# Insert your Bot Token here!
# DO NOT SHARE IT WITH ANYONE!
botToken = "MY AMAZING TOKEN"
# The channel ID where the bot will be working in
botChannel = "733752892095332477"
# The bot's status message
#
# PLACEHOLDERS:
# %online% - Online Players
# %max% - Maximum Player Amount
botStatusName = "%online%/%max% players Online"
# Type of the bot's status
# Allowed Values: DISABLED,PLAYING,WATCHING,LISTENING,STREAMING,COMPETING
botStatusType = "PLAYING"
# URL of the bot's stream when using the status type 'STREAMING'
# Has to start with https://twitch.tv/ or https://www.youtube.com/watch?v=
streamingURL = "https://www.youtube.com/watch?v=dQw4w9WgXcQ"
# Enable checking for updates?
# Notification will be shown after every server start in log when update is available
enableUpdateChecker = false
# The minimum release type for the update checker to notify
# Allowed values: release, beta, alpha
updateCheckerMinimumReleaseType = "beta"
# Set to false to disable config migration from other mods/plugins to this one
# This does not prevent updating of this config after mod updates
allowConfigMigration = false
# Attempt to parse id-based mentions to names in in-game chat
parseMentionsIngame = true
# Configuration options for commands
[commands]
# The Role IDs of your Admin Roles
# Now supports multiple roles which can access admin commands
adminRoleIDs = [ "733619476930494495" ]
# Set to true to require an space after the prefix (e.g. 'mc help')
spaceAfterPrefix = false
# [BETA] Add your custom commands here
# You must op this UUID in the ops.txt or some custom commands won't work!
senderUUID = "8d8982a5-8cf9-4604-8feb-3dd5ee1f83a3"
# Enable help command?
# Disabling also removes response when you entered an invalid command
# Requires server restart
helpCmdEnabled = true
# Enable the list command in discord
# Requires server restart
listCmdEnabled = true
# Enable the uptime command in discord
# Requires server restart
uptimeCmdEnabled = true
# Set to false to completely disable the "Unknown Command" message
showUnknownCommandMessage = true
# Set to true to enable the "Unknown Command" message in all channels
showUnknownCommandEverywhere = false
[[commands.customCommands]]
name = "kick"
description = "Kicks an player from the Server"
mcCommand = "kick %player% %reason%"
adminOnly = true
hidden = false
[[commands.customCommands.args]]
name = "player"
description = "The player to be kicked"
optional = false
[[commands.customCommands.args]]
name = "reason"
description = "Reason for the kick"
optional = true
[[commands.customCommands]]
name = "stop"
description = "Stops the server"
mcCommand = "stop"
adminOnly = true
hidden = false
args = [ ]
[[commands.customCommands]]
name = "kill"
description = "Kills an Player or Entity"
mcCommand = "kill %target%"
adminOnly = true
hidden = false
[[commands.customCommands.args]]
name = "target"
description = "The target(s) for the kill command."
optional = false
# Toggle some message related features
[messages]
# Enable formatting conversion (Markdown <==> Minecraft)
convertCodes = true
# Send formatting codes from mc chat to discord
# Has no effect when markdown <==> Minecraft is enabled
formattingCodesToDiscord = false
# Should /say output be sent to discord?
sendOnSayCommand = true
# Should /me output be sent to discord?
sendOnMeCommand = true
# When an /say command's message starts with this prefix, it will not be sent to discord
sayCommandIgnoredPrefix = "§4§6§k§r"
# Should tamed entity death be visible in discord?
sendDeathMessagesForTamedAnimals = false
# Advanced options
[advanced]
# Custom channel ID for server specific messages (like Join/leave)
# Leave 'default' to use default channel
serverChannelID = "default"
# Custom channel ID for death messages
# Leave 'default' to use default channel
deathsChannelID = "default"
# Custom channel for for ingame messages
# Leave 'default' to use default channel
chatOutputChannelID = "default"
# Custom channel where messages get sent to minecraft
# Leave 'default' to use default channel
chatInputChannelID = "default"
# Config options which only have an effect when using forge
[forgeSpecific]
# A list of blacklisted modids
# Adding one will prevent the mod to send messages to discord using forges IMC system
IMC_modIdBlacklist = [ "forestcraft" ]
# Show item information, which is visible on hover ingame, as embed in discord?
sendItemInfo = true
# Configuration for linking
[linking]
# Unlink players when they leave the discord server for whatever reason (ex. leave,kick,ban)?
unlinkOnLeave = true
# Should discord linking be enabled?
# If whitelist is on, this can NOT be disabled
# DOES NOT WORK IN OFFLINE MODE!
enableLinking = true
# Role ID of an role an player should get when he links his discord account
# Leave as 0 to disable
linkedRoleID = "0"
# Enable discord based whitelist?
# This will override the link config!
# To whitelist use the whitelist command in the bot DMs
whitelistMode = false
# Adding Role IDs here will require the players to have at least ONE of these roles to link account
requiredRoles = [ ]
settingsBlacklist = [ ]
# Allows you to configure the default values of some personal settings
[linking.personalSettingsDefaults]
default_useDiscordNameInChannel = true
default_ignoreReactions = false
default_pingSound = true
# Webhook configuration
[webhook]
# Whether or not the bot should use a webhook (it will create one)
enable = true
# The avatar to be used for server messages
serverAvatarURL = "https://raw.githubusercontent.com/ErdbeerbaerLP/Discord-Chat-Integration/master/images/srv.png"
# The name to be used for server messages
serverName = "Server"
# The URL where the player avatar gets fetched from
#
# PLACEHOLDERS:
# %uuid% - Returns the player's UUID with dashes
# %uuid_dashless% - Returns the player's UUID without dashes
# %name% - Returns the player's name
# %randomUUID% - Returns an random UUID which can be used to prevent discord cache
playerAvatarURL = "https://minotar.net/avatar/%uuid_dashless%"
# Allows you to modify and translate most of the messages this bot will send
[localization]
# This is what will be displayed ingame when someone types into the bot's channel
# PLACEHOLDERS:
# %user% - The username
# %id% - The user ID
# %msg% - The message
ingame_discordMessage = "§6[§5DISCORD§6]§r <%user%> %msg%"
# This is what will be displayed ingame when someone sends an reply into the bot's channel
# PLACEHOLDERS:
# %user% - The username
# %id% - The user ID
# %msg% - The reply message
# %ruser% - The username of the message that got the reply
# %rmsg% - The replied message
ingame_discordReplyMessage = "§6[§5DISCORD§6]§r §a%user%§r in reply to §3%ruser%§r: %msg%"
# Message shown when hovering over the username of an discord message
# PLACEHOLDERS:
# %user% - The username/nickname (Someone123)
# %user#tag% - The username with tag (someone#0001)
# %id% - The user ID
#
# NOTE: using an @ here can cause ping sounds ingame
discordUserHover = "§3Discord User %user#tag%\n§aClick to mention"
# This message will edited in / sent when the server finished starting
serverStarted = "Server Started!"
# Message to show while the server is starting
# This will be edited to SERVER_STARTED_MSG when webhook is false
serverStarting = "Server Starting..."
# This message will be sent when the server was stopped
serverStopped = "Server Stopped!"
# The message to print to discord when it was possible to detect a server crash
serverCrash = "Server Crash Detected :thinking:"
# Gets sent when an player joins
#
# PLACEHOLDERS:
# %player% - The player's name
playerJoin = "%player% joined"
# Gets sent when an player leaves
#
# PLACEHOLDERS:
# %player% - The player's name
playerLeave = "%player% left"
# Gets sent when an player dies
#
# PLACEHOLDERS:
# %player% - The player's name
# %msg% - The death message
playerDeath = "%player% %msg%"
# Message sent instead of playerLeave, when the player times out
#
# PLACEHOLDERS:
# %player% - The player's name
playerTimeout = "%player% timed out!"
# Gets sent when an player finishes an advancement
# Supports MulitLined messages using \n
#
# PLACEHOLDERS:
# %player% - The player's name
# %name% - The advancement name
# %desc% - The advancement description
advancementMessage = "%player% just made the advancement **%name%**\n_%desc%_"
# The chat message in discord, sent from an player in-game
#
# PLACEHOLDERS:
# %player% - The player's name
# %msg% - The chat message
discordChatMessage = "%player%: %msg%"
# Sent to a player when someone reacts to his messages
# PLACEHOLDERS:
# %name% - (Nick-)Name of the user who reacted (format: 'SomeNickName')
# %name2% - Name of the user who reacted with discord discriminator (format: 'SomeName#0123')
# %msg% - Content of the message which got the reaction
# %emote% - The reacted emote
reactionMessage = "§6[§5DISCORD§6]§r§7 %name% reacted to your message \"§9%msg%§7\" with '%emote%'"
# Message shown for attachments
attachment = "Attachment"
# Message shown for stickers
sticker = "Sticker"
# Header for Embeds
embed = "Embed"
# Message shown for embed images
embedImage = "Image"
# Message shown for embed messages
embedMessage = "Message"
# Hover message for the bot tag ingame
bot = "This user is an bot"
# Strings about the discord commands
[localization.commands]
# Shown in console when trying to use the discord command
ingameOnly = "This command can only be executed ingame"
# Shown when successfully reloading the config file
configReloaded = "Config reloaded!"
# Shown when an subcommand is disabled
subcommandDisabled = "This subcommand is disabled!"
# Message sent when user does not have permission to run a command
noPermission = "You don't have permission to execute this command!"
# Message sent when an invalid command was typed
#
# PLACEHOLDERS:
unknownCommand = "Unknown command, try `/help` for a list of commands"
# Message if a player provides less arguments than required
notEnoughArguments = "Not enough arguments"
# Message if a player provides too many arguments
tooManyArguments = "Too many arguments"
# Message if a player can not be found
#
# PLACEHOLDERS:
# %player% - The player's name
playerNotFound = "Can not find player \"%player%\""
# The message for 'list' when no player is online
cmdList_empty = "There is no player online..."
# The header for 'list' when one player is online
cmdList_one = "There is 1 player online:"
# The header for 'list'
# PLACEHOLDERS:
# %amount% - The amount of players online
cmdList_header = "There are %amount% players online:"
# Header of the help command
cmdHelp_header = "Your available commands in this channel:"
# Message sent when ignoring Discord messages
commandIgnore_ignore = "You are now ignoring Discord messages!"
# Message sent when unignoring Discord messages
commandIgnore_unignore = "You are no longer ignoring Discord messages!"
# Message sent when using the uptime command
#
# PLACEHOLDERS:
# %uptime% - Uptime in uptime format, see uptimeFormat
cmdUptime_message = "The server is running for %uptime%"
# The format of the uptime command
# For more help with the formatting visit https://commons.apache.org/proper/commons-lang/apidocs/org/apache/commons/lang3/time/DurationFormatUtils.html
uptimeFormat = "dd 'days' HH 'hours' mm 'minutes'"
# Shows when running slash commands as command response
executing = "Executing..."
# Command argument description for the linkcheck command's Discord user parameter
cmdLinkcheck_userargDesc = "The discord user to check"
# Command argument description for the linkcheck command's minecraft player parameter
cmdLinkcheck_mcargDesc = "The minecraft player's UUID or Name to check"
# Sent when checked user is not linked
cmdLinkcheck_notlinked = "This account is not linked!"
#
cmdLinkcheck_discordAcc = "Discord-Account: "
cmdLinkcheck_minecraftAcc = "Minecraft Account: "
cmdLinkcheck_cannotGetPlayer = "Error getting player information! Maybe you used an invalid name / UUID"
cmdSett_key = "Destination settings key"
cmdSett_val = "Settings value"
cmdSett_set = "Change an setting"
cmdSett_get = "Retrieve an setting value"
# Command descriptions
[localization.commands.descriptions]
settings = "Allows you to edit your personal settings"
uptime = "Displays the server uptime"
help = "Displays a list of all commands"
list = "Lists all players currently online"
link = "Links your Discord account with your Minecraft account"
whitelist = "Whitelists you on the server by linking with Discord"
linkcheck = "Shows info about an linked discord user or an ingame player"
# Strings about the account linking feature
[localization.linking]
# Sent to the user when he linked his discord successfully
# PLACEHOLDERS:
# %player% - The in-game player name
linkSuccessful = "Your account is now linked with %player%.\nUse /settings to view and set some user-specific settings"
# Sent to the user when linking fails
linkFailed = "Account link failed"
# Sent when an already linked user attempts to link an account
# PLACEHOLDERS:
# %player% - The in-game player name
alreadyLinked = "Your account is already linked with %player%"
# Sent when attempting to use personal commands while not linked
# PLACEHOLDERS:
# %method% - The currently enabled method for linking
notLinked = "Your account is not linked! Link it first using %method%"
# Message of the link method in whitelist mode
# Used by %method% placeholder
linkMethodWhitelistCode = "joining the server and then using `/link <whitelist-code>` here"
# Message of the link method in normal mode
# Used by %method% placeholder
linkMethodIngame = "`/discord link` ingame"
# Sent when attempting to whitelist-link with an non uuid string
# PLACEHOLDERS:
# %arg% - The provided argument
link_argumentNotUUID = "Argument \"%arg%\" is not an valid UUID or Name. Use `/whitelist <Name-or-UUID>`"
# Sent when attempting to link with an unknown number
invalidLinkNumber = "Invalid link number! Use `/discord link` ingame to get your link number"
# Sent when attempting to link with an invalid number
linkNumberNAN = "This is not a number!"
# Message shown to players who are not whitelisted using discord
# No effect if discord whitelist is off
notWhitelistedCode = "§cYou are not whitelisted.\nJoin the discord server for more information\nhttps://discord.gg/someserver\nYour Whitelist-Code is: §6%code%"
# Sent when trying to link without an required role
link_requiredRole = "You need to have an role to use this"
# Sent when trying to link as an non-member
link_notMember = "You are not member of the Discord-Server this bot is operating in!"
# Sent to the user when he linked his discord successfully
# PLACEHOLDERS:
# %name% - The linked discord name
# %name#tag% - The linked discord name with tag
linkSuccessfulIngame = "Your account is now linked with discord-user %name#tag%"
# Message shown to players who want to link their discord account ingame
#
# PLACEHOLDERS:
# %num% - The link number
linkMsgIngame = "Send this command as a direct message to the bot to link your account: /link %num%\nThis number will expire after 10 minutes"
# Shown when hovering over the link message
hoverMsg_copyClipboard = "Click to copy command to clipboard"
# Strings about the personal settings feature
[localization.personalSettings]
# Message for getting an setting's value
personalSettingGet = "This settings value is `%bool%`"
# Sent when user sucessfully updates an prersonal setting
settingUpdateSuccessful = "Successfully updated setting!"
# Header of the personal settings list
personalSettingsHeader = "Personal Settings list:"
# Error message when providing an invalid personal setting name
invalidPersonalSettingKey = "`%key%` is not an valid setting!"
settingsCommandUsage = "Usages:\n\n/settings - lists all available keys\n/settings get <key> - Gets the current settings value\n/settings set <key> <value> - Sets an Settings value"
# Sent when setting an personal setting fails
settingUpdateFailed = "Failed to set value :/"
# Sent when attempting to change an blacklisted setting
settingUpdateBlocked = "The server owner disabled changing of this setting"
# Descriptions of the settings
[localization.personalSettings.descriptons]
ignoreDiscordChatIngame = "Configure if you want to ignore discord chat ingame"
useDiscordNameInChannel = "Should the bot send messages using your discord name and avatar instead of your in-game name and skin?"
ignoreReactions = "Configure if you want to ignore discord reactions ingame"
pingSound = "Toggle the ingame ping sound"
hideFromDiscord = "Setting this to true will hide all of your minecraft messages from discord"
# Configuration for the in-game command '/discord'
[ingameCommand]
# Enable the /discord command to show an custom message with invite URL?
enabled = true
# The message displayed when typing /discord in the server chat
message = "Join our discord! https://discord.gg/someserver"
# The message shown when hovering the /discord command message
hoverMessage = "Click to open the invite url"
# The url to open when clicking the /discord command text
inviteURL = "https://discord.gg/someserver"
# The command log channel is an channel where every command execution gets logged
[commandLog]
# Channel ID for the command log channel
# Leave 0 to disable
channelID = "0"
# The format of the log messages
#
# PLACEHOLDERS:
# %sender% - The name of the Command Source
# %cmd% - executed command (e.g. "say Hello World"
# %cmd-no-args% - Command without arguments (e.g. "say"
message = "%sender% executed command `%cmd%`"
# A list of commands that should NOT be logged
ignoredCommands = [ "list", "help", "?" ]
# Configure votifier integration here
# (Spigot only)
[votifier]
# Should votifier messages be sent to discord?
enabled = true
# Custom channel ID for Votifier messages
# Leave 'default' to use default channel
votifierChannelID = "default"
# The message format of the votifier message
#
# PLACEHOLDERS:
# %player% - The player´s name
# %site% - The name of the vote site
# %addr% - (IP) Address of the site
message = ":ballot_box: %player% just voted on %site%"
# Name of the webhook title
name = "Votifier"
# URL of the webhook avatar image
avatarURL = "https://www.cubecraft.net/attachments/bkjvmqn-png.126824/"
# Configure Dynmap integration here
[dynmap]
# The message format of the message forwarded to discord
#
# PLACEHOLDERS:
# %sender% - The sender´s name
# %msg% - The Message
dcMessage = "<%sender%> %msg%"
# Custom channel ID for dynmap chat
# Leave 'default' to use default channel
dynmapChannelID = "default"
# Name of the webhook title
name = "Dynmap Web-Chat"
# URL of the webhook avatar image
avatarURL = "https://styles.redditmedia.com/t5_2kl3ct/styles/communityIcon_am5zopqnjhs41.png"
# The name format of the message forwarded to the dynmap webchat
#
# PLACEHOLDERS:
# %name% - The discord name of the sender (including nickname)
# %name#tag% - The discord name with tag of the sender (without nickname)
webName = "%name% (discord)"
# Name shown in discord when no name was specified on the website
unnamed = "Unnamed"
# Configure some plugin-specific BStats settings here
# Everything can be seen here: https://bstats.org/plugin/bukkit/DiscordIntegration/9765
#
# Only applies to spigot as there is no BStats for Forge
[bstats]
# Allow sending of installed addon stats (Name and version of installed addons)
sendAddonStats = true
# Settings for servers running as Bungeecord-suberver
[bungee]
# Set this to true if the server is running as an subserver of an bungeecord network and therefore needs to be in offline mode
# Setting this will force account linking in offline mode
# Do NOT use for actual offline mode servers, as this will break the linking feature because of the UUIDs!
#
# Currently no support for floodgate running on bungee
isBehindBungee = false
Crash report / Error log (if applicable)
---- Minecraft Crash Report ----
// Quite honestly, I wouldn't worry myself about that.
Time: 10/29/21, 12:54 PM
Description: Exception in server tick loop
java.lang.RuntimeException: Attempted to load class org/astemir/forestcraft/sounds/SoundManager for invalid dist DEDICATED_SERVER
at net.minecraftforge.fml.loading.RuntimeDistCleaner.processClassWithFlags(RuntimeDistCleaner.java:71) ~[forge-1.16.5-36.2.8.jar:36.2] {}
at cpw.mods.modlauncher.LaunchPluginHandler.offerClassNodeToPlugins(LaunchPluginHandler.java:85) ~[modlauncher-8.0.9.jar:?] {}
at cpw.mods.modlauncher.ClassTransformer.transform(ClassTransformer.java:120) ~[modlauncher-8.0.9.jar:?] {}
at cpw.mods.modlauncher.TransformingClassLoader$DelegatedClassLoader.findClass(TransformingClassLoader.java:265) ~[modlauncher-8.0.9.jar:?] {}
at cpw.mods.modlauncher.TransformingClassLoader.loadClass(TransformingClassLoader.java:136) ~[modlauncher-8.0.9.jar:?] {re:classloading}
at cpw.mods.modlauncher.TransformingClassLoader.loadClass(TransformingClassLoader.java:98) ~[modlauncher-8.0.9.jar:?] {re:classloading}
at java.lang.ClassLoader.loadClass(ClassLoader.java:522) ~[?:?] {}
at java.lang.Class.getDeclaredFields0(Native Method) ~[?:?] {}
at java.lang.Class.privateGetDeclaredFields(Class.java:3061) ~[?:?] {}
at java.lang.Class.getField0(Class.java:3246) ~[?:?] {}
at java.lang.Class.getField(Class.java:1997) ~[?:?] {}
at de.erdbeerbaerlp.dcintegration.forge.bstats.Metrics.<init>(Metrics.java:158) ~[dcintegration:2.3.4] {re:classloading}
at de.erdbeerbaerlp.dcintegration.forge.DiscordIntegration.serverStarted(DiscordIntegration.java:210) ~[dcintegration:2.3.4] {re:classloading,re:mixin}
at net.minecraftforge.eventbus.ASMEventHandler_280_DiscordIntegration_serverStarted_FMLServerStartedEvent.invoke(.dynamic) ~[?:?] {}
at net.minecraftforge.eventbus.ASMEventHandler.invoke(ASMEventHandler.java:85) ~[eventbus-4.0.0.jar:?] {}
at net.minecraftforge.eventbus.EventBus.post(EventBus.java:302) ~[eventbus-4.0.0.jar:?] {}
at net.minecraftforge.eventbus.EventBus.post(EventBus.java:283) ~[eventbus-4.0.0.jar:?] {}
at net.minecraftforge.fml.server.ServerLifecycleHooks.handleServerStarted(ServerLifecycleHooks.java:106) ~[forge:?] {re:mixin,re:classloading}
at net.minecraft.server.MinecraftServer.func_240802_v_(MinecraftServer.java:622) ~[?:?] {re:mixin,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,pl:mixin:APP:betterendforge.mixins.json:MinecraftServerMixin,pl:mixin:APP:structure_gel.mixins.json:MinecraftServerMixin,pl:mixin:APP:paxi.mixins.json:MixinMinecraftServer,pl:mixin:APP:byg.mixins.json:server.MixinMinecraftServer,pl:mixin:APP:charm.mixins.json:accessor.MinecraftServerAccessor,pl:mixin:A,pl:runtimedistcleaner:A}
at net.minecraft.server.MinecraftServer.func_240783_a_(MinecraftServer.java:232) ~[?:?] {re:mixin,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,pl:mixin:APP:betterendforge.mixins.json:MinecraftServerMixin,pl:mixin:APP:structure_gel.mixins.json:MinecraftServerMixin,pl:mixin:APP:paxi.mixins.json:MixinMinecraftServer,pl:mixin:APP:byg.mixins.json:server.MixinMinecraftServer,pl:mixin:APP:charm.mixins.json:accessor.MinecraftServerAccessor,pl:mixin:A,pl:runtimedistcleaner:A}
at java.lang.Thread.run(Thread.java:834) [?:?] {}
A detailed walkthrough of the error, its code path and all known details is as follows:
---------------------------------------------------------------------------------------
-- System Details --
Details:
Minecraft Version: 1.16.5
Minecraft Version ID: 1.16.5
Operating System: Linux (amd64) version 4.4.0-174-generic
Java Version: 11.0.9.1, Oracle Corporation
Java VM Version: OpenJDK 64-Bit Server VM (mixed mode), Oracle Corporation
Memory: 409935776 bytes (390 MB) / 2030043136 bytes (1936 MB) up to 4194304000 bytes (4000 MB)
CPUs: 2
JVM Flags: 18 total; -Xmx4000M -XX:+ParallelRefProcEnabled -XX:MaxGCPauseMillis=200 -XX:+UnlockExperimentalVMOptions -XX:+DisableExplicitGC -XX:+AlwaysPreTouch -XX:G1NewSizePercent=30 -XX:G1MaxNewSizePercent=40 -XX:G1HeapRegionSize=8M -XX:G1ReservePercent=20 -XX:G1HeapWastePercent=5 -XX:G1MixedGCCountTarget=4 -XX:InitiatingHeapOccupancyPercent=15 -XX:G1MixedGCLiveThresholdPercent=90 -XX:G1RSetUpdatingPauseTimePercent=5 -XX:SurvivorRatio=32 -XX:+PerfDisableSharedMem -XX:MaxTenuringThreshold=1
ModLauncher: 8.0.9+86+master.3cf110c
ModLauncher launch target: fmlserver
ModLauncher naming: srg
ModLauncher services:
/mixin-0.8.4.jar mixin PLUGINSERVICE
/eventbus-4.0.0.jar eventbus PLUGINSERVICE
/forge-1.16.5-36.2.8.jar object_holder_definalize PLUGINSERVICE
/forge-1.16.5-36.2.8.jar runtime_enum_extender PLUGINSERVICE
/forge-1.16.5-36.2.8.jar capability_inject_definalize PLUGINSERVICE
/accesstransformers-3.0.1.jar accesstransformer PLUGINSERVICE
/forge-1.16.5-36.2.8.jar runtimedistcleaner PLUGINSERVICE
/mixin-0.8.4.jar mixin TRANSFORMATIONSERVICE
/forge-1.16.5-36.2.8.jar fml TRANSFORMATIONSERVICE
FML: 36.2
Forge: net.minecraftforge:36.2.8
FML Language Providers:
[email protected]
minecraft@1
[email protected]
Mod List:
create-stuff-additions1.16.5_v1.1.5.jar |Create Stuff Additions |create_stuff_additions |1.1.5 |DONE |Manifest: NOSIGNATURE
BetterDungeons-1.16.4-1.2.1.jar |YUNG's Better Dungeons |betterdungeons |1.16.4-1.2.1 |DONE |Manifest: NOSIGNATURE
immersivecooking-1.0.1.jar |Immersive Cooking |immersivecooking |1.0.1 |DONE |Manifest: NOSIGNATURE
ftb-essentials-1605.1.4-build.28.jar |FTB Essentials |ftbessentials |1605.1.4-build.28 |DONE |Manifest: NOSIGNATURE
infernal-expansion-2.3.2.jar |Infernal Expansion |infernalexp |2.3.2 |DONE |Manifest: NOSIGNATURE
nether-s-exoticism-1.16.5-1.1.1.jar |Nether's Exoticism |nethers_exoticism |1.1.1 |DONE |Manifest: NOSIGNATURE
Satako-4.2.12-1.16.5.jar |Satako |satako |4.2.12-1.16.5 |DONE |Manifest: NOSIGNATURE
mcw-windows-2.0.0-mc1.16.5.jar |Macaw's Windows |mcwwindows |2.0.0 |DONE |Manifest: NOSIGNATURE
BetterNether_Reforged-1.0.2.jar |Better Nether Reforged |betternether |1.0 |DONE |Manifest: NOSIGNATURE
stalwart-dungeons-1.16.5-1.1.7.jar |Stalwart Dungeons |stalwart_dungeons |1.1.7 |DONE |Manifest: NOSIGNATURE
strawgolem-1.16-1.9.jar |Straw Golem |strawgolem |1.16-1.9 |DONE |Manifest: NOSIGNATURE
farmersdelightintegrations-1.16.5-1.2.jar |Farmer's Delight Compats |farmersdelightintegrations |1.16.5-1.2 |DONE |Manifest: NOSIGNATURE
YungsApi-1.16.4-Forge-13.jar |YUNG's API |yungsapi |1.16.4-Forge-13 |DONE |Manifest: NOSIGNATURE
pyromancer 1.6.3.jar |Pyromancer |pyromancer |1.6.3 |DONE |Manifest: NOSIGNATURE
guardvillagers-1.16.5.1.2.6.jar |Guard Villagers |guardvillagers |1.2.6 |DONE |Manifest: NOSIGNATURE
randompatches-2.4.4-forge.jar |RandomPatches |randompatches |2.4.4-forge |DONE |Manifest: 92:f6:29:d4:09:89:f5:f5:98:5e:20:34:31:d0:7b:58:22:06:bd:a5:d1:6a:92:6e:ac:3d:8d:18:c5:b2:5b:d7
Apotheosis-1.16.5-4.8.2.jar |Apotheosis |apotheosis |4.8.2 |DONE |Manifest: NOSIGNATURE
abyg-1.2-forge.jar |[BYG Addon] Enhanced Vanilla B|bygvanillabiomes |1.0.0 |DONE |Manifest: NOSIGNATURE
PickUpNotifier-v1.2-1.16.3.jar |Pick Up Notifier |pickupnotifier |1.2 |DONE |Manifest: d3:cc:6f:1b:30:87:fa:d9:8f:91:15:20:27:63:95:aa:d5:cb:1b:5b:e6:36:cc:57:20:a9:b3:d4:d5:1a:5d:b8
SnowRealMagic-1.16.4-2.6.1.jar |Snow! Real Magic! |snowrealmagic |2.6.1 |DONE |Manifest: NOSIGNATURE
dynviewdist-2.0.jar |Dynamic view distance |dynview |1.8 |DONE |Manifest: NOSIGNATURE
what_did_you_vote_for-1.16.5-1.0.5.jar |What Did You Vote For? |whatareyouvotingfor |1.0 |DONE |Manifest: NOSIGNATURE
TinkersDelight-1.16-1.3.jar |Tinker's Delight |tdelight |1.16-1.2 |DONE |Manifest: NOSIGNATURE
RevampedWolf-1.16.4-0.7.1.jar |RevampedWolf |revampedwolf |1.16.4-0.7.1 |DONE |Manifest: NOSIGNATURE
dcintegration-forge-2.3.4-1.16.jar |Discord Integration |dcintegration |2.3.4 |DONE |Manifest: NOSIGNATURE
supplementaries-1.16.5-0.17.6.jar |Supplementaries |supplementaries |1.16.5-0.17.2 |DONE |Manifest: NOSIGNATURE
betterendforge-1.16.5-1.6.3.jar |BetterEnd Forge |betterendforge |1.16.5-1.6.3 |DONE |Manifest: NOSIGNATURE
Upgraded Netherite 1.10.0.jar |Upgraded Netherite |upgradednetherite |1.10.0 |DONE |Manifest: NOSIGNATURE
UnofficialWildUpdate1.19v0.2.jar |Wild Update Unofficial |wild_update_unofficial |1.1 |DONE |Manifest: NOSIGNATURE
structure_gel-1.16.5-1.7.7.jar |Structure Gel API |structure_gel |1.7.7 |DONE |Manifest: NOSIGNATURE
corpse-1.16.5-1.0.6.jar |Corpse |corpse |1.16.5-1.0.6 |DONE |Manifest: NOSIGNATURE
cleancut-mc1.16-2.2-forge.jar |Clean Cut |cleancut |2.2 |DONE |Manifest: NOSIGNATURE
torchmaster-2.3.8.jar |Torchmaster |torchmaster |2.3.8 |DONE |Manifest: NOSIGNATURE
repurposed_structures_forge-3.3.1+1.16.5.jar |Repurposed Structures |repurposed_structures |3.3.1+1.16.5 |DONE |Manifest: NOSIGNATURE
morevillagers-FORGE-1.16.5-1.5.5.jar |More Villagers |morevillagers |1.5.5 |DONE |Manifest: NOSIGNATURE
MorePaths-1.16.1-1.3.1.jar |MorePaths |morepaths |1.16-1.3.1 |DONE |Manifest: NOSIGNATURE
Aquamirae 1.1 (1.16.5).jar |Aquamirae |ob_aquamirae |1.1.0 |DONE |Manifest: NOSIGNATURE
toughnessbar-6.1.jar |Toughness Bar |toughnessbar |6.1 |DONE |Manifest: NOSIGNATURE
dungeons_plus-1.16.5-1.1.5.jar |Dungeons Plus |dungeons_plus |1.1.5 |DONE |Manifest: NOSIGNATURE
mcw-trapdoors-1.0.3-mc1.16.5.jar |Macaw's Trapdoors |mcwtrpdoors |1.0.3 |DONE |Manifest: NOSIGNATURE
supermartijn642corelib-1.0.12-mc1.16.5.jar |SuperMartijn642's Core Lib |supermartijn642corelib |1.0.12 |DONE |Manifest: NOSIGNATURE
masonry-1.16.3-0.3.6.jar |Masonry |masonry |NONE |DONE |Manifest: NOSIGNATURE
BetterDefaultBiomes-1.16.4+-Alpha 2.5.3.jar |Better Default Biomes |betterdefaultbiomes |Alpha 2.5.3 |DONE |Manifest: NOSIGNATURE
YungsBridges-Forge-1.16.4-1.0.1.jar |YUNG's Bridges |yungsbridges |1.16.4-1.0.1 |DONE |Manifest: NOSIGNATURE
CavesAndCliffsBackport-1.16.5-6.3.jar |Caves & Cliffs Backport |cavesandcliffs |6.3 |DONE |Manifest: NOSIGNATURE
darkerdepths-1.16.5-1.1.4.jar |Darker Depths |darkerdepths |1.1.4 |DONE |Manifest: NOSIGNATURE
Highlighter-1.16.5-1.1.0.jar |Highlighter |highlighter |1.1.0 |DONE |Manifest: NOSIGNATURE
spark-forge.jar |spark |spark |1.6.0 |DONE |Manifest: NOSIGNATURE
curios-forge-1.16.5-4.0.5.3.jar |Curios API |curios |1.16.5-4.0.5.3 |DONE |Manifest: NOSIGNATURE
extendedmushrooms-1.6.1-1.16.5+.jar |Extended Mushrooms |extendedmushrooms |1.6.1-1.16.5+ |DONE |Manifest: NOSIGNATURE
RottenPiglinsBug_Fix.jar |Rotten_Piglins |rotten_piglins |1.1.1 |DONE |Manifest: NOSIGNATURE
unnamedanimalmod-1.0.2.jar |Unnamed Animal Mod |unnamedanimalmod |1.0.2 |DONE |Manifest: NOSIGNATURE
obfuscate-0.6.2-1.16.3.jar |Obfuscate |obfuscate |0.6.2 |DONE |Manifest: e1:59:1a:56:ec:97:b3:d0:b3:4b:25:06:1f:83:b0:f4:fd:0c:24:e3:6d:ea:94:b1:9f:22:b0:38:13:60:88:ea
NetherAgriculture-1.16.5-1.2.1.jar |Nether Agriculture |netheragriculture |1.2.1 |DONE |Manifest: NOSIGNATURE
TheAbyss2 1.9.7 1.16.5.jar |TheAbyss |theabyss |1.9.7 |DONE |Manifest: NOSIGNATURE
mcw-roofs-2.0.1-mc1.16.5-4.jar |Macaw's Roofs |mcwroofs |2.0.1 |DONE |Manifest: NOSIGNATURE
sapience-1.16.5-1.1.2.jar |Sapience |sapience |1.1.2 |DONE |Manifest: NOSIGNATURE
cfm-7.0.0pre22-1.16.3.jar |MrCrayfish's Furniture Mod |cfm |7.0.0-pre22 |DONE |Manifest: NOSIGNATURE
mcw-furniture-2.0.1-mc1.16.5.jar |Macaw's Furniture |mcwfurnitures |2.0.1 |DONE |Manifest: NOSIGNATURE
forestcraft-1.602.jar |Astemir's Forest Craft |forestcraft |1.602 |DONE |Manifest: NOSIGNATURE
cloth-config-4.11.26-forge.jar |Cloth Config v4 API |cloth-config |4.11.26 |DONE |Manifest: NOSIGNATURE
BetterShieldsMC1.16.3-1.1.5.jar |Better Shields |bettershields |1.1.5 |DONE |Manifest: NOSIGNATURE
CustomStartingGear-1.16.5-2.0.3-universal.jar |Custom Starter Gear |customstartinggear |2.0.3.1 |DONE |Manifest: 53:bb:a0:11:bd:61:e2:1a:e2:cb:fd:f8:4f:e4:cd:a5:cc:12:f4:43:f0:78:68:3b:e1:62:c6:78:3b:27:ff:fe
exoticbirds-1.16.4-1.2.0.jar |Exotic Birds |exoticbirds |1.2.0 |DONE |Manifest: NOSIGNATURE
BetterMineshafts-Forge-1.16.4-2.0.4.jar |YUNG's Better Mineshafts |bettermineshafts |1.16.4-2.0.4 |DONE |Manifest: NOSIGNATURE
veinmining-forge-1.16.5-0.12.jar |Vein Mining |veinmining |1.16.5-0.12 |DONE |Manifest: NOSIGNATURE
stables-1.16.5-1.0.1.jar |Stables |stables |1.16.5-1.0.1 |DONE |Manifest: NOSIGNATURE
DarkPaintings-1.16.5-6.0.3.jar |DarkPaintings |darkpaintings |6.0.3 |DONE |Manifest: eb:c4:b1:67:8b:f9:0c:db:dc:4f:01:b1:8e:61:64:39:4c:10:85:0b:a6:c4:c7:48:f0:fa:95:f2:cb:08:3a:e5
mcw-lights-1.0.0-mc1.16.5.jar |Macaw's Lights and Lamps |mcwlights |1.0.0 |DONE |Manifest: NOSIGNATURE
QuarkOddities-1.16.3.jar |Quark Oddities |quarkoddities |1.16.3 |DONE |Manifest: NOSIGNATURE
Kiwi-1.16.5-3.5.2.jar |Kiwi |kiwi |3.5.2 |DONE |Manifest: NOSIGNATURE
ClientTweaks_1.16.3-5.3.0.jar |Client Tweaks |clienttweaks |5.3.0 |DONE |Manifest: NOSIGNATURE
mowziesmobs-1.5.19.jar |Mowzie's Mobs |mowziesmobs |1.5.19 |DONE |Manifest: NOSIGNATURE
TheComfortZone-1.16.5-1.0.3.jar |The Comfort Zone |thecomfortzone |1.16.5-1.0.3 |DONE |Manifest: NOSIGNATURE
treeharvester_1.16.5-3.2.jar |Tree Harvester |treeharvester |3.2 |DONE |Manifest: NOSIGNATURE
jei-1.16.5-7.7.1.126.jar |Just Enough Items |jei |7.7.1.126 |DONE |Manifest: NOSIGNATURE
jei-professions-1.0.0-1.16.4.jar |JEI Professions |jeiprofessions |1.0.0 |DONE |Manifest: NOSIGNATURE
AttributeFix-1.16.5-10.1.2.jar |AttributeFix |attributefix |10.1.2 |DONE |Manifest: eb:c4:b1:67:8b:f9:0c:db:dc:4f:01:b1:8e:61:64:39:4c:10:85:0b:a6:c4:c7:48:f0:fa:95:f2:cb:08:3a:e5
goblintraders-1.6.0-1.16.3.jar |Goblin Traders |goblintraders |1.6.0 |DONE |Manifest: NOSIGNATURE
seals-1.16.3-2.1.2.jar |Seals |seals |2.1.2 |DONE |Manifest: NOSIGNATURE
caelus-forge-1.16.5-2.1.3.1.jar |Caelus API |caelus |1.16.5-2.1.3.1 |DONE |Manifest: NOSIGNATURE
Paxi-Forge-1.16.4-1.0.jar |Paxi |paxi |1.16.4-1.0 |DONE |Manifest: NOSIGNATURE
Organics-1.16.5-0.1.9.jar |Organics |organics |0.1.9 |DONE |Manifest: NOSIGNATURE
NaturesCompass-1.16.5-1.9.1-forge.jar |Nature's Compass |naturescompass |1.16.5-1.9.1-forge |DONE |Manifest: NOSIGNATURE
1.16.5-additionalbars-2.0.3.jar |Additional Bars |additionalbars |2.0.3 |DONE |Manifest: NOSIGNATURE
SereneSeasons-1.16.5-4.0.1.121-universal.jar |Serene Seasons |sereneseasons |1.16.5-4.0.1.121 |DONE |Manifest: NOSIGNATURE
stoneholm-1.2.2.jar |Stoneholm |stoneholm |1.2 |DONE |Manifest: NOSIGNATURE
curioofundying-forge-1.16.5-5.2.0.0.jar |Curio of Undying |curioofundying |1.16.5-5.2.0.0 |DONE |Manifest: NOSIGNATURE
outvoted-1.16.5-1.2.4.jar |Outvoted |outvoted |1.2.4 |DONE |Manifest: NOSIGNATURE
additional_lights-1.16.4-2.1.3.jar |Additional Lights |additional_lights |2.1.3 |DONE |Manifest: NOSIGNATURE
JEITweaker-1.16.5-1.0.1.35.jar |JEI Tweaker |jeitweaker |1.0.1.35 |DONE |Manifest: NOSIGNATURE
CraftTweaker-1.16.5-7.1.2.453.jar |CraftTweaker |crafttweaker |7.1.2.453 |DONE |Manifest: NOSIGNATURE
restored_earth-1.16.5-1.0.0.jar |Restored Earth |restored_earth |1.0.0 |DONE |Manifest: NOSIGNATURE
crumbs-forge-1.0.7.jar |Crumbs |crumbs |1.0.7 |DONE |Manifest: NOSIGNATURE
forge-1.16.5-36.2.8-universal.jar |Forge |forge |36.2.8 |DONE |Manifest: 22:af:21:d8:19:82:7f:93:94:fe:2b:ac:b7:e4:41:57:68:39:87:b1:a7:5c:c6:44:f9:25:74:21:14:f5:0d:90
Atum-1.16.5-2.2.8.jar |Atum 2 |atum |1.16.5-2.2.8 |DONE |Manifest: NOSIGNATURE
DungeonsArise-1.16.5-2.1.47-release.jar |When Dungeons Arise |dungeons_arise |2.1.47 |DONE |Manifest: NOSIGNATURE
forge-1.16.5-36.2.8-server.jar |Minecraft |minecraft |1.16.5 |DONE |Manifest: NOSIGNATURE
Trading Table-0.1.0-1.16.5.jar |Trading Table |trading_table |0.1.0 |DONE |Manifest: NOSIGNATURE
MouseTweaks-2.14-mc1.16.2.jar |Mouse Tweaks |mousetweaks |2.14 |DONE |Manifest: NOSIGNATURE
storage_overhaul-1.16.5-1.0.4.jar |Storage Overhaul |storage_overhaul |1.16.5-1.0.4 |DONE |Manifest: NOSIGNATURE
CreateTweaker-1.0.0.23.jar |CreateTweaker |createtweaker |1.0.0.23 |DONE |Manifest: NOSIGNATURE
paintings-1.16.4-7.0.0.1.jar |Paintings ++ |paintings |1.16.4-6.0.1.5 |DONE |Manifest: NOSIGNATURE
jeiintegration_1.16.5-7.0.1.15.jar |JEI Integration |jeiintegration |7.0.1.15 |DONE |Manifest: NOSIGNATURE
flywheel-1.16-0.2.4.jar |Flywheel |flywheel |1.16-0.2.4 |DONE |Manifest: NOSIGNATURE
Mantle-1.16.5-1.6.127.jar |Mantle |mantle |1.6.127 |DONE |Manifest: NOSIGNATURE
ftb-backups-2.1.2.2.jar |FTB Backups |ftbbackups |2.1.2.2 |DONE |Manifest: NOSIGNATURE
polymorph-forge-1.16.5-0.25.jar |Polymorph |polymorph |1.16.5-0.25 |DONE |Manifest: NOSIGNATURE
AutoRegLib-1.6-49.jar |AutoRegLib |autoreglib |1.6-49 |DONE |Manifest: NOSIGNATURE
earthmobsmod-1.16.4-0.4.2.jar |Earth Mobs Mod |earthmobsmod |1.16.4-0.4.2 |DONE |Manifest: NOSIGNATURE
byg-1.3.5.jar |Oh The Biomes You'll Go |byg |1.3.4 |DONE |Manifest: NOSIGNATURE
Aquaculture-1.16.5-2.1.21.jar |Aquaculture 2 |aquaculture |1.16.5-2.1.21 |DONE |Manifest: NOSIGNATURE
Obscuria's Core 1.1 (1.16.5).jar |Obscuria's Core |ob_core |1.1.0 |DONE |Manifest: NOSIGNATURE
orcinusscaves-1.3.jar |Orcinus's Cavern |cavern |{1.2.0} |DONE |Manifest: NOSIGNATURE
Betterlands-1.16.5-0.5.0.jar |Betterlands |betterlands |1.16.5-0.5.0 |DONE |Manifest: NOSIGNATURE
moreplates-1.16.5-7.4.2.jar |More Plates |moreplates |7.4.2 |DONE |Manifest: NOSIGNATURE
xptome-1.16.5-v2.1.2.jar |XP Tome |xpbook |v2.1.2 |DONE |Manifest: NOSIGNATURE
tetra-1.16.5-3.17.0.jar |Tetra |tetra |3.17.0 |DONE |Manifest: NOSIGNATURE
tetranomicon-1.3.jar |Tetranomicon |tetranomicon |1.3 |DONE |Manifest: NOSIGNATURE
DungeonsMod-1.16.3-1.4.40.jar |Dungeons Mod |dungeonsmod |1.16.3-1.4.40 |DONE |Manifest: NOSIGNATURE
blue_skies-1.16.5-1.1.3.jar |Blue Skies |blue_skies |1.1.3 |DONE |Manifest: NOSIGNATURE
Piglin Expansion 1.0.jar |Piglin Expansion |piglin_expansion |1.0.0 |DONE |Manifest: NOSIGNATURE
Wyrmroost-1.16.3-1.2.11.jar |Wyrmroost |wyrmroost |1.16.3-1.2.11 |DONE |Manifest: NOSIGNATURE
eidolon-0.2.7.jar |Eidolon |eidolon |0.2.7 |DONE |Manifest: NOSIGNATURE
AdditionalBanners-1.16.5-6.0.3.jar |AdditionalBanners |additionalbanners |6.0.3 |DONE |Manifest: eb:c4:b1:67:8b:f9:0c:db:dc:4f:01:b1:8e:61:64:39:4c:10:85:0b:a6:c4:c7:48:f0:fa:95:f2:cb:08:3a:e5
Architects-Palette-1.16.4-1.1.4.jar |Architect's Palette |architects_palette |1.1.2 |DONE |Manifest: NOSIGNATURE
morecfm-1.3.1-1.16.3.jar |MrCrayfish's More Furniture Mo|morecfm |1.3.1 |DONE |Manifest: NOSIGNATURE
incontrol-1.16-5.2.1.jar |InControl |incontrol |1.16-5.2.1 |DONE |Manifest: NOSIGNATURE
kingvillager-1.6.2.jar |The King of the villagers |kingvillager |1.6.2 |DONE |Manifest: NOSIGNATURE
KleeSlabs_1.16.5-9.2.1.jar |KleeSlabs |kleeslabs |9.2.1 |DONE |Manifest: NOSIGNATURE
The Afterlight v1.5.5.jar |The Afterlight |the_afterlight |1.5.5 |DONE |Manifest: NOSIGNATURE
villagernames_1.16.5-3.3.jar |Villager Names |villagernames |3.3 |DONE |Manifest: NOSIGNATURE
Controlling-7.0.0.26.jar |Controlling |controlling |7.0.0.26 |DONE |Manifest: NOSIGNATURE
Placebo-1.16.5-4.6.0.jar |Placebo |placebo |4.6.0 |DONE |Manifest: NOSIGNATURE
citadel-1.8.1-1.16.5.jar |Citadel |citadel |1.8.1 |DONE |Manifest: NOSIGNATURE
alexsmobs-1.12.1.jar |Alex's Mobs |alexsmobs |1.12.1 |DONE |Manifest: NOSIGNATURE
iceandfire-2.1.9-1.16.5.jar |Ice and Fire |iceandfire |2.1.9-1.16.5 |DONE |Manifest: NOSIGNATURE
moreminecarts-1.3.11.jar |More Minecarts |moreminecarts |1.3.11 |DONE |Manifest: NOSIGNATURE
MutantBeasts-1.16.4-1.1.3.jar |Mutant Beasts |mutantbeasts |1.16.4-1.1.3 |DONE |Manifest: d9:be:bd:b6:9a:e4:14:aa:05:67:fb:84:06:77:a0:c5:10:ec:27:15:1b:d6:c0:88:49:9a:ef:26:77:61:0b:5e
Bookshelf-Forge-1.16.5-10.3.29.jar |Bookshelf |bookshelf |10.3.29 |DONE |Manifest: eb:c4:b1:67:8b:f9:0c:db:dc:4f:01:b1:8e:61:64:39:4c:10:85:0b:a6:c4:c7:48:f0:fa:95:f2:cb:08:3a:e5
Tips-1.16.5-4.0.7.jar |Tips |tips |4.0.7 |DONE |Manifest: eb:c4:b1:67:8b:f9:0c:db:dc:4f:01:b1:8e:61:64:39:4c:10:85:0b:a6:c4:c7:48:f0:fa:95:f2:cb:08:3a:e5
sophisticatedbackpacks-1.16.5-3.4.2.354.jar |Sophisticated Backpacks |sophisticatedbackpacks |1.16.5-3.4.2.354 |DONE |Manifest: NOSIGNATURE
mcw-doors-1.0.3-mc1.16.5.jar |Macaw's Doors |mcwdoors |1.0.3 |DONE |Manifest: NOSIGNATURE
carryon-1.16.5-1.15.5.15.jar |Carry On |carryon |1.15.5.15 |DONE |Manifest: 8c:03:ac:7d:21:62:65:e2:83:91:f3:22:57:99:ed:75:78:1e:db:de:03:99:ef:53:3b:59:95:18:01:bc:84:a9
omnis-1.16.5-1.1.2.3.jar |Omnis |omnis |1.16.5-1.0 |DONE |Manifest: NOSIGNATURE
twilightforest-1.16.5-4.0.546-universal.jar |The Twilight Forest |twilightforest |NONE |DONE |Manifest: NOSIGNATURE
cuneiform-1.16.3-1.2.5.jar |Cuneiform |cuneiform |1.16.3-1.2.5 |DONE |Manifest: NOSIGNATURE
JEIEnchantmentInfo-1.16.4-1.2.1.jar |JEI Enchantment Info |jeienchantmentinfo |1.16.4-1.2.1 |DONE |Manifest: NOSIGNATURE
EquipmentCompare-1.16.5-1.2.7.jar |Equipment Compare |equipmentcompare |1.2.7 |DONE |Manifest: NOSIGNATURE
createplus-1.16.4_v0.3.2.1.jar |Create Plus |createplus |1.16.4_v0.3.2.1 |DONE |Manifest: NOSIGNATURE
chocolate-1.3.0-1.16.4.jar |Chocolate |chocolate |1.3.0-1.16.4 |DONE |Manifest: NOSIGNATURE
mcw-bridges-1.0.6-mc1.16.5.jar |Macaw's Bridges |mcwbridges |1.0.6 |DONE |Manifest: NOSIGNATURE
FarmersDelight-1.16.5-0.5.0.jar |Farmer's Delight |farmersdelight |1.16.5-0.5.0 |DONE |Manifest: NOSIGNATURE
fd_cookbook-2.0.jar |Farmers Delight Cookbook |fd_cookbook |2.0 |DONE |Manifest: NOSIGNATURE
farmersdelightintegration-1.16.5-1.0.3.jar |Farmer's Delight Integration |farmersdelightintegration |1.16.5-1.0.3 |DONE |Manifest: NOSIGNATURE
DustrialDecor-1.2.9.jar |'Dustrial Decor |dustrial_decor |1.2.8 |DONE |Manifest: NOSIGNATURE
mcw-fences-1.0.1-mc1.16.5.jar |Macaw's Fences and Walls |mcwfences |1.0.1 |DONE |Manifest: NOSIGNATURE
Bountiful-1.16.4-3.3.1.jar |Bountiful |bountiful |1.16.4-3.3.1 |DONE |Manifest: NOSIGNATURE
CNB-1.16.3_5-1.2.11.jar |Creatures and Beasts |cnb |1.2.11 |DONE |Manifest: NOSIGNATURE
geckolib-forge-1.16.5-3.0.48.jar |GeckoLib |geckolib3 |3.0.48 |DONE |Manifest: NOSIGNATURE
Wilds Version 2.8.jar |Wilds |wilds |1.0.0 |DONE |Manifest: NOSIGNATURE
Patchouli-1.16.4-53.2.jar |Patchouli |patchouli |1.16.4-53.2 |DONE |Manifest: NOSIGNATURE
collective-1.16.5-2.64.jar |Collective |collective |2.64 |DONE |Manifest: NOSIGNATURE
villagertools-1.16.5-1.0.1.jar |villagertools |villagertools |1.16.5-1.0.1 |DONE |Manifest: 1f:47:ac:b1:61:82:96:b8:47:19:16:d2:61:81:11:60:3a:06:4b:61:31:56:7d:44:31:1e:0c:6f:22:5b:4c:ed
elevatorid-1.16.5-1.7.13.jar |Elevator Mod |elevatorid |1.16.5-1.7.13 |DONE |Manifest: NOSIGNATURE
BetterStrongholds-1.16.4-1.2.1.jar |YUNG's Better Strongholds |betterstrongholds |1.16.4-1.2.1 |DONE |Manifest: NOSIGNATURE
Desolation 1.1.0-1 1.16.5.jar |Desolation (Forge) |desolation |1.1.0-1 |DONE |Manifest: NOSIGNATURE
EnigmaticLegacy-2.11.5.jar |Enigmatic Legacy |enigmaticlegacy |2.11.5 |DONE |Manifest: NOSIGNATURE
Deeper in The Caves Remake 1.1.jar |Deeper In The Caves Remake |stacked_dimensions_warden |1.0.0 |DONE |Manifest: NOSIGNATURE
buildersaddition-1.16.5-20210807a.jar |Builders Crafts & Addition |buildersaddition |1.16.5-20210807a |DONE |Manifest: NOSIGNATURE
travelers_index-1.16.4-1.0.2.jar |Traveler's Index |travelers_index |1.16.4-1.0.2 |DONE |Manifest: NOSIGNATURE
cavebiomeapi-1.16.5-1.4.0.jar |CaveBiomeAPI |cavebiomeapi |1.16.5-1.4.0 |DONE |Manifest: NOSIGNATURE
architectury-1.23.33-forge.jar |Architectury |architectury |1.23.33 |DONE |Manifest: NOSIGNATURE
ftb-library-forge-1605.3.3-build.74.jar |FTB Library |ftblibrary |1605.3.3-build.74 |DONE |Manifest: NOSIGNATURE
ftb-teams-forge-1605.2.3-build.38.jar |FTB Teams |ftbteams |1605.2.3-build.38 |DONE |Manifest: NOSIGNATURE
ftb-ranks-1605.1.4-build.12-forge.jar |FTB Ranks |ftbranks |1605.1.4-build.12 |DONE |Manifest: NOSIGNATURE
curiouselytra-forge-1.16.5-4.0.2.3.jar |Curious Elytra |curiouselytra |1.16.5-4.0.2.3 |DONE |Manifest: NOSIGNATURE
enchantwithmob-1.16.5-1.5.0.jar |Enchant With Mob |enchantwithmob |1.16.5-1.5.0 |DONE |Manifest: NOSIGNATURE
smallships-1.16.5-1.10.1.jar |Small Ships Mod |smallships |1.10.1 |DONE |Manifest: NOSIGNATURE
GameMenuModOption-1.16.4-1.8.jar |Game Menu Mod Option |gamemenumodoption |1.8 |DONE |Manifest: NOSIGNATURE
voidtotem-1.16.5-1.4.0.jar |Void Totem |voidtotem |1.16.5-1.4.0 |DONE |Manifest: NOSIGNATURE
BetterAdvancements-1.16.5-0.1.0.108.jar |Better Advancements |betteradvancements |0.1.0.108 |DONE |Manifest: NOSIGNATURE
additionallanterns-1.0.0-mc1.16.jar |Additional Lanterns |additionallanterns |1.0.0 |DONE |Manifest: NOSIGNATURE
NourishedNetherV8.jar |Nourished Nether |nourished_nether |1.0.8 |DONE |Manifest: NOSIGNATURE
item-filters-forge-1605.2.5-build.9.jar |Item Filters |itemfilters |1605.2.5-build.9 |DONE |Manifest: NOSIGNATURE
ftb-quests-forge-1605.3.5-build.69.jar |FTB Quests |ftbquests |1605.3.5-build.69 |DONE |Manifest: NOSIGNATURE
EasyMagic-v1.0.3-1.16.5.jar |Easy Magic |easymagic |1.0.3 |DONE |Manifest: 9a:09:85:98:65:c4:8c:11:c5:49:f6:d6:33:23:39:df:8d:b4:ff:92:84:b8:bd:a5:83:9f:ac:7f:2a:d1:4b:6a
NourishedEndV2.jar |Nourished End |nourished_end |1.0.2 |DONE |Manifest: NOSIGNATURE
Druidcraft-1.16.5-0.4.53.jar |Druidcraft |druidcraft |0.4.52 |DONE |Manifest: NOSIGNATURE
the-conjurer-1.16.4-1.0.13.jar |The Conjurer |conjurer_illager |1.0.13 |DONE |Manifest: NOSIGNATURE
dungeons_mobs-1.16.5-1.0.10.jar |Dungeons Mobs |dungeons_mobs |1.0.10 |DONE |Manifest: NOSIGNATURE
abnormals_core-1.16.5-3.3.0.jar |Abnormals Core |abnormals_core |3.3.0 |DONE |Manifest: NOSIGNATURE
environmental-1.16.5-1.1.0.jar |Environmental |environmental |1.1.0 |DONE |Manifest: NOSIGNATURE
bamboo_blocks-1.16.5-3.0.0.jar |Bamboo Blocks |bamboo_blocks |3.0.0 |DONE |Manifest: NOSIGNATURE
Bayou-Blues-1.16.5-1.0.5.jar |Bayou Blues |bayou_blues |1.16.5-1.0.5 |DONE |Manifest: NOSIGNATURE
upgrade_aquatic-1.16.5-3.1.0.jar |Upgrade Aquatic |upgrade_aquatic |3.1.0 |DONE |Manifest: NOSIGNATURE
Better-Badlands-1.16.5-2.0.3.jar |Better Badlands |better_badlands |1.16.5-2.0.3 |DONE |Manifest: NOSIGNATURE
irregularchef-1.16.5-1.0.1.jar |The Irregular Chef |irregularchef |1.16.5-1.0.1 |DONE |Manifest: NOSIGNATURE
endergetic-1.16.4-3.0.0.jar |The Endergetic Expansion |endergetic |3.0.0 |DONE |Manifest: NOSIGNATURE
personality-1.16.5-1.0.2.jar |Personality |personality |1.0.2 |DONE |Manifest: NOSIGNATURE
savageandravage-1.16.5-3.1.0.jar |Savage & Ravage |savageandravage |3.1.0 |DONE |Manifest: NOSIGNATURE
nethers_delight-2.1.jar |Nethers Delight |nethers_delight |2.1 |DONE |Manifest: NOSIGNATURE
buzzier_bees-1.16.5-3.0.1.jar |Buzzier Bees |buzzier_bees |3.0.1 |DONE |Manifest: NOSIGNATURE
Enhanced-Mushrooms-1.16.5-3.0.9.jar |Enhanced Mushrooms |enhanced_mushrooms |1.16.5-3.0.9 |DONE |Manifest: NOSIGNATURE
ArachnidRancher1.4.jar |Arachnid Rancher |spiderfarm |1.4 |DONE |Manifest: NOSIGNATURE
extraboats-1.16.5-2.1.0.jar |Extra Boats |extraboats |2.1.0 |DONE |Manifest: NOSIGNATURE
create-mc1.16.5_v0.3.2d.jar |Create |create |v0.3.2d |DONE |Manifest: NOSIGNATURE
createdeco-1.1.1-all.jar |Create Deco |createdeco |1.1.1 |DONE |Manifest: NOSIGNATURE
morecreatestuffs-mc1.16-1.4.1b.jar |More Create Stuffs |morecreatestuffs |mc1.16-1.4.1b |DONE |Manifest: NOSIGNATURE
Waystones_1.16.5-7.6.3.jar |Waystones |waystones |7.6.3 |DONE |Manifest: NOSIGNATURE
goldenhopper-1.2.1-1.16.3.jar |Golden Hopper |goldenhopper |1.2.1 |DONE |Manifest: NOSIGNATURE
mcw-paintings-1.0.2-mc1.16.5.jar |Macaw's Paintings |mcwpaintings |1.0.2 |DONE |Manifest: NOSIGNATURE
Clumps-6.0.0.27.jar |Clumps |clumps |6.0.0.27 |DONE |Manifest: NOSIGNATURE
mgui-1.16.5-3.3.0.jar |mgui |mgui |3.3.0 |DONE |Manifest: NOSIGNATURE
tetrapak-1.16.5-0.3.3.jar |Tetra Pak |tetrapak |1.16.5-0.3.3 |DONE |Manifest: NOSIGNATURE
village-employment-1.16.5-1.4.1.jar |Village Employment |village_employment |1.4.1 |DONE |Manifest: NOSIGNATURE
comforts-forge-1.16.5-4.0.1.3.jar |Comforts |comforts |1.16.5-4.0.1.3 |DONE |Manifest: NOSIGNATURE
campful-1.16.5-3.1.0.jar |Campful |campful |2.0 |DONE |Manifest: NOSIGNATURE
SimpleStorageNetwork-1.16.5-1.5.0.jar |Simple Storage Network |storagenetwork |1.16.5-1.5.0 |DONE |Manifest: 1f:47:ac:b1:61:82:96:b8:47:19:16:d2:61:81:11:60:3a:06:4b:61:31:56:7d:44:31:1e:0c:6f:22:5b:4c:ed
configured-1.2.0-1.16.3.jar |Configured |configured |1.2.0 |DONE |Manifest: NOSIGNATURE
OuterEnd-0.2.14.jar |The Outer End |outer_end |0.2.9 |DONE |Manifest: NOSIGNATURE
MyServerIsCompatible-1.16.5-1.0.jar |MyServerIsCompatible |myserveriscompatible |1.0 |DONE |Manifest: NOSIGNATURE
BadMobs-1.16.5-9.0.3.jar |BadMobs |badmobs |9.0.3 |DONE |Manifest: eb:c4:b1:67:8b:f9:0c:db:dc:4f:01:b1:8e:61:64:39:4c:10:85:0b:a6:c4:c7:48:f0:fa:95:f2:cb:08:3a:e5
create-confectionery1.16.5_v1.0.2.jar |Create Confectionery |create_confectionery |1.0.2 |DONE |Manifest: NOSIGNATURE
lazydfu-0.1.3.jar |LazyDFU |lazydfu |0.1.3 |DONE |Manifest: NOSIGNATURE
ExplorersCompass-1.16.5-1.1.2-forge.jar |Explorer's Compass |explorerscompass |1.16.5-1.1.2-forge |DONE |Manifest: NOSIGNATURE
Wandering-Bag-1.16.5-1.0.2.jar |Wandering Bag |wandering_bag |1.0.2 |DONE |Manifest: NOSIGNATURE
AkashicTome-1.4-16.jar |Akashic Tome |akashictome |1.4-16 |DONE |Manifest: NOSIGNATURE
ftb-chunks-forge-1605.3.2-build.57.jar |FTB Chunks |ftbchunks |1605.3.2-build.57 |DONE |Manifest: NOSIGNATURE
frozenup-1.0.1.jar |Frozen Up |frozenup |1.0.1 |DONE |Manifest: NOSIGNATURE
TravelersTitles-1.16.4-1.5.jar |Traveler's Titles |travelerstitles |1.16.4-1.5 |DONE |Manifest: NOSIGNATURE
terraform-1.0.2.jar |Terraform Api Reforged |terraform |1.0.1 |DONE |Manifest: NOSIGNATURE
twist-1.4.1.jar |Twist |twist |4.0.0 |DONE |Manifest: NOSIGNATURE
selene-1.16.5-1.8.1.jar |Selene |selene |1.16.5-1.8.1 |DONE |Manifest: NOSIGNATURE
TConstruct-1.16.5-3.1.3.271.jar |Tinkers' Construct |tconstruct |3.1.3.271 |DONE |Manifest: NOSIGNATURE
ToolBelt-1.16.5-1.16.0.jar |Tool Belt |toolbelt |1.16.0 |DONE |Manifest: NOSIGNATURE
Jade-1.16.4-2.8.0.jar |Jade |jade |2.8.0 |DONE |Manifest: NOSIGNATURE
atmospheric-1.16.5-3.1.0.jar |Atmospheric |atmospheric |3.1.0 |DONE |Manifest: NOSIGNATURE
Iceberg-1.16.5-1.0.12.jar |Iceberg |iceberg |1.0.12 |DONE |Manifest: NOSIGNATURE
Quark-r2.4-319.jar |Quark |quark |r2.4-319 |DONE |Manifest: NOSIGNATURE
charm-forge-1.16.5-2.3.2.jar |Charm |charm |2.3.2 |DONE |Manifest: NOSIGNATURE
terraincognita-1.16.3-1.7.jar |Terra Incognita |terraincognita |1.16.3-1.7 |DONE |Manifest: NOSIGNATURE
malum-1.16.5-0.3.0.jar |Malum |malum |1.16.5-0.3.0 |DONE |Manifest: NOSIGNATURE
abnormals_delight-1.16.5-1.2.0.jar |Abnormals Delight |abnormals_delight |1.2.0 |DONE |Manifest: NOSIGNATURE
copperpot-1.16.5-1.1.2.jar |Copper Pot |copperpot |1.16.5-1.1.2 |DONE |Manifest: NOSIGNATURE
StorageDrawers-1.16.3-8.3.0.jar |Storage Drawers |storagedrawers |8.3.0 |DONE |Manifest: NOSIGNATURE
performant-1.16.2-5-3.72m.jar |Performant |performant |3.56m |DONE |Manifest: NOSIGNATURE
InventoryHud_[1.16.2-1.16.5].forge-3.4.0.jar |Inventory HUD+(Forge edition) |inventoryhud |3.4.0 |DONE |Manifest: NOSIGNATURE
muchmoremodcompat-na.jar |Much More Mod Compat |muchmoremodcompat |NONE |DONE |Manifest: NOSIGNATURE
decorative_blocks-1.16.4-1.7.2.jar |Decorative Blocks |decorative_blocks |1.7.2 |DONE |Manifest: NOSIGNATURE
decorative_blocks_abnormals-1.2.jar |Decorative Blocks Abnormals |decorative_blocks_abnormals |1.2 |DONE |Manifest: NOSIGNATURE
combustivefishing-forge-1.16.3-4.0.0.1.jar |Combustive Fishing |combustivefishing |1.16.3-4.0.0.1 |DONE |Manifest: NOSIGNATURE
HunterIllager-1.16.5-1.4.0.jar |Hunter Illager |hunterillager |1.16.5-1.4.0 |DONE |Manifest: NOSIGNATURE
ferritecore-2.1.0-forge.jar |Ferrite Core |ferritecore |2.1.0 |DONE |Manifest: 41:ce:50:66:d1:a0:05:ce:a1:0e:02:85:9b:46:64:e0:bf:2e:cf:60:30:9a:fe:0c:27:e0:63:66:9a:84:ce:8a
OddWaterMobs[1.16.5]_1.4.1.jar |Odd Water Mobs |oddwatermobs |1.4.1 |DONE |Manifest: NOSIGNATURE
enhancedcelestials-2.0.8-1.16.5.jar |Enhanced Celestials |enhancedcelestials |2.0.8-1.16.5 |DONE |Manifest: NOSIGNATURE
valhelsia_core-16.0.12.jar |Valhelsia Core |valhelsia_core |16.0.12 |DONE |Manifest: NOSIGNATURE
valhelsia_structures-1.16.5-0.1.6.jar |Valhelsia Structures |valhelsia_structures |1.16.5-0.1.6 |DONE |Manifest: NOSIGNATURE
forbidden_arcanus-16.2.0-beta-4.jar |Forbidden & Arcanus |forbidden_arcanus |16.2.0-beta-4 |DONE |Manifest: NOSIGNATURE
overloadedarmorbar-5.1.0.jar |Overloaded Armor Bar |overloadedarmorbar |5.1.0 |DONE |Manifest: NOSIGNATURE
FabricBiomeApiReforged-1.0.5.jar |Fabric BiomeApi Reforged |fabric-biome-api |1.0.5 |DONE |Manifest: NOSIGNATURE
Cinderscapes-Reforged-1.0.3.jar |Cinderscapes Reforged |cinderscapes |1.0.3 |DONE |Manifest: NOSIGNATURE
NatureExpansion1.2.jar |Nature Expansion |nature_expansion |1.0.0 |DONE |Manifest: NOSIGNATURE
createaddition-1.16.5-20210930a.jar |Create Crafts & Additions |createaddition |1.16.5-20210930a |DONE |Manifest: NOSIGNATURE
Crash Report UUID: b33e6ab4-5b48-41cd-aa2f-90e624e25138
Kiwi Modules:
kiwi:contributors
kiwi:data
snowrealmagic:core
snowrealmagic:world
Player Count: 0 / 20; []
Data Packs: vanilla, mod:create_stuff_additions, mod:betterdungeons, mod:immersivecooking, mod:ftbessentials, mod:infernalexp (incompatible), mod:nethers_exoticism, mod:satako, mod:mcwwindows, mod:betternether, mod:stalwart_dungeons, mod:strawgolem, mod:farmersdelightintegrations, mod:yungsapi, mod:pyromancer, mod:guardvillagers, mod:randompatches, mod:apotheosis (incompatible), mod:bygvanillabiomes, mod:pickupnotifier (incompatible), mod:snowrealmagic, mod:dynview (incompatible), mod:whatareyouvotingfor, mod:tdelight, mod:revampedwolf, mod:dcintegration (incompatible), mod:supplementaries, mod:betterendforge, mod:upgradednetherite (incompatible), mod:wild_update_unofficial, mod:structure_gel, mod:corpse, mod:cleancut (incompatible), mod:torchmaster (incompatible), mod:repurposed_structures, mod:morevillagers, mod:morepaths (incompatible), mod:ob_aquamirae, mod:toughnessbar (incompatible), mod:dungeons_plus, mod:mcwtrpdoors (incompatible), mod:supermartijn642corelib, mod:masonry (incompatible), mod:betterdefaultbiomes, mod:yungsbridges, mod:cavesandcliffs (incompatible), mod:darkerdepths, mod:highlighter, mod:spark, mod:curios, mod:extendedmushrooms, mod:rotten_piglins, mod:unnamedanimalmod, mod:obfuscate (incompatible), mod:netheragriculture, mod:theabyss, mod:mcwroofs, mod:sapience, mod:cfm (incompatible), mod:mcwfurnitures, mod:forestcraft, mod:cloth-config (incompatible), mod:bettershields, mod:customstartinggear (incompatible), mod:exoticbirds, mod:bettermineshafts, mod:veinmining, mod:stables, mod:darkpaintings, mod:mcwlights (incompatible), mod:quarkoddities (incompatible), mod:kiwi, mod:clienttweaks (incompatible), mod:mowziesmobs (incompatible), mod:thecomfortzone, mod:treeharvester, mod:jei, mod:jeiprofessions (incompatible), mod:attributefix, mod:goblintraders, mod:seals (incompatible), mod:caelus, mod:paxi, mod:organics, mod:naturescompass (incompatible), mod:additionalbars (incompatible), mod:sereneseasons, mod:stoneholm, mod:curioofundying, mod:outvoted, mod:additional_lights, mod:jeitweaker, mod:crafttweaker, mod:restored_earth (incompatible), mod:crumbs, mod:forge, mod:atum, mod:dungeons_arise, mod:trading_table, mod:mousetweaks, mod:storage_overhaul, mod:createtweaker, mod:paintings (incompatible), mod:jeiintegration, mod:flywheel, mod:mantle (incompatible), mod:ftbbackups (incompatible), mod:polymorph, mod:autoreglib (incompatible), mod:earthmobsmod (incompatible), mod:byg, mod:aquaculture (incompatible), mod:ob_core, mod:cavern, mod:betterlands, mod:moreplates, mod:xpbook, mod:tetra, mod:tetranomicon, mod:dungeonsmod (incompatible), mod:blue_skies (incompatible), mod:piglin_expansion, mod:wyrmroost (incompatible), mod:eidolon, mod:additionalbanners, mod:architects_palette (incompatible), mod:morecfm, mod:incontrol (incompatible), mod:kingvillager, mod:kleeslabs (incompatible), mod:the_afterlight, mod:villagernames, mod:controlling, mod:placebo (incompatible), mod:citadel (incompatible), mod:alexsmobs, mod:iceandfire (incompatible), mod:moreminecarts, mod:mutantbeasts (incompatible), mod:bookshelf, mod:tips, mod:sophisticatedbackpacks, mod:mcwdoors, mod:carryon, mod:omnis, mod:twilightforest, mod:cuneiform, mod:jeienchantmentinfo, mod:equipmentcompare, mod:createplus, mod:chocolate, mod:mcwbridges (incompatible), mod:farmersdelight, mod:fd_cookbook, mod:farmersdelightintegration, mod:dustrial_decor (incompatible), mod:mcwfences, mod:bountiful (incompatible), mod:cnb, mod:geckolib3 (incompatible), mod:wilds, mod:patchouli (incompatible), mod:collective, mod:villagertools, mod:elevatorid, mod:betterstrongholds, mod:desolation, mod:enigmaticlegacy, mod:stacked_dimensions_warden, mod:buildersaddition (incompatible), mod:travelers_index (incompatible), mod:cavebiomeapi, mod:architectury, mod:ftblibrary, mod:ftbteams, mod:ftbranks, mod:curiouselytra, mod:enchantwithmob, mod:smallships, mod:gamemenumodoption, mod:voidtotem, mod:betteradvancements, mod:additionallanterns, mod:nourished_nether, mod:itemfilters, mod:ftbquests, mod:easymagic, mod:nourished_end, mod:druidcraft (incompatible), mod:conjurer_illager (incompatible), mod:dungeons_mobs (incompatible), mod:abnormals_core, mod:environmental, mod:bamboo_blocks, mod:bayou_blues, mod:upgrade_aquatic, mod:better_badlands, mod:irregularchef, mod:endergetic, mod:personality, mod:savageandravage, mod:nethers_delight, mod:buzzier_bees, mod:enhanced_mushrooms, mod:spiderfarm, mod:extraboats, mod:create, mod:createdeco, mod:morecreatestuffs, mod:waystones (incompatible), mod:goldenhopper (incompatible), mod:mcwpaintings (incompatible), mod:clumps, mod:mgui (incompatible), mod:tetrapak, mod:village_employment, mod:comforts, mod:campful, mod:storagenetwork, mod:configured, mod:outer_end, mod:myserveriscompatible, mod:badmobs (incompatible), mod:create_confectionery, mod:lazydfu, mod:explorerscompass, mod:wandering_bag, mod:akashictome, mod:ftbchunks, mod:frozenup, mod:travelerstitles, mod:terraform, mod:twist, mod:selene, mod:tconstruct, mod:toolbelt (incompatible), mod:jade, mod:atmospheric, mod:iceberg, mod:quark (incompatible), mod:charm, mod:terraincognita, mod:malum (incompatible), mod:abnormals_delight, mod:copperpot, mod:storagedrawers (incompatible), mod:performant (incompatible), mod:inventoryhud, mod:muchmoremodcompat, mod:decorative_blocks, mod:decorative_blocks_abnormals, mod:combustivefishing (incompatible), mod:hunterillager, mod:ferritecore (incompatible), mod:oddwatermobs, mod:enhancedcelestials, mod:valhelsia_core, mod:valhelsia_structures, mod:forbidden_arcanus (incompatible), mod:overloadedarmorbar (incompatible), mod:fabric-biome-api, mod:cinderscapes, mod:nature_expansion, mod:createaddition, DruidLeavesFix.zip, Repurposed_Structures-Buzzier_Bees.zip, Repurposed_Structures-Environmental.zip, Repurposed_Structures-Farmers_Delight_Forge.zip, Repurposed_Structures-Ice_and_Fire.zip, Repurposed_Structures-More_Villagers_Forge.zip, Repurposed_Structures-Savage_And_Ravage.zip, ichphilipp-s-endcity-v1-1-1-16-2-forge.zip (incompatible), pillager-settlements-e2230.zip (incompatible), pillager-stronghold.zip, the-forbidden-castle-v1-1.zip
Is Modded: Definitely; Server brand changed to 'forge'
Type: Dedicated Server (map_server.txt)
Additional Information
I'm currently using version 2.3.4 as the download link for 1.16.5 2.3.5 is the 1.17 mod version. See: #356
Astemir's Forestcraft: https://www.curseforge.com/minecraft/mc-mods/astemirs-forest-craft
well... does this still happen without Discord Integration? Because the error seems to be caused by the mod itself (attempts to load clientside only classes)