ErdbeerbaerLP / DiscordIntegration-Forge

Forge version of the Discord Integration mod
https://modrinth.com/plugin/dcintegration
MIT License
98 stars 54 forks source link

[Bug]: Failed to get channel with ID #375

Open zevaryx opened 2 years ago

zevaryx commented 2 years ago

What happened?

Bot crashes during startup, saying "Failed to get channel with ID ''"

Game Version

1.16

What platform are you using?

Forge

Platform version

36.2.19

Config File

# General options for the bot
[general]
  # Insert your Bot Token here!
  # DO NOT SHARE IT WITH ANYONE!
  botToken = ""
  # The channel ID where the bot will be working in
  botChannel = "920852675401248809"
  # The bot's status message
  #
  # PLACEHOLDERS:
  # %online% - Online Players
  # %max% - Maximum Player Amount
  botStatusName = "%online% 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 = true
  # 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 = true
  # 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 = [  "858878725037621248"  ]
  # Add your custom commands here
  # You can also generate some on https://erdbeerbaerlp.de/dcintegration-commands/
  # 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 = [  "examplemod"  ]
  # 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 = "StarkTech"
  # 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%?randomuuid=%randomUUID%"
# 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/Fm6gVZTcff"
  # 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/Fm6gVZTcff"
# 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
#
# Does not apply to fabric yet, as there is no bstats for it
[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 ----
// On the bright side, I bought you a teddy bear!

Time: 12/15/21 5:09 PM
Description: Mod loading error has occurred

java.lang.Exception: Mod Loading has failed
        at net.minecraftforge.fml.CrashReportExtender.dumpModLoadingCrashReport(CrashReportExtender.java:85) ~[forge:?] {re:classloading}
        at net.minecraftforge.fml.server.ServerModLoader.load(ServerModLoader.java:51) ~[forge:?] {re:classloading}
        at net.minecraft.server.Main.main(Main.java:95) ~[?:?] {re:classloading}
        at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_292] {}
        at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_292] {}
        at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_292] {}
        at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_292] {}
        at net.minecraftforge.fml.loading.FMLServerLaunchProvider.lambda$launchService$0(FMLServerLaunchProvider.java:51) ~[forge-1.16.5-36.2.19.jar:36.2] {}
        at cpw.mods.modlauncher.LaunchServiceHandlerDecorator.launch(LaunchServiceHandlerDecorator.java:37) [modlauncher-8.0.9.jar:?] {}
        at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:54) [modlauncher-8.0.9.jar:?] {}
        at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:72) [modlauncher-8.0.9.jar:?] {}
        at cpw.mods.modlauncher.Launcher.run(Launcher.java:82) [modlauncher-8.0.9.jar:?] {re:classloading}
        at cpw.mods.modlauncher.Launcher.main(Launcher.java:66) [modlauncher-8.0.9.jar:?] {re:classloading}
        at net.minecraftforge.server.ServerMain$Runner.runLauncher(ServerMain.java:63) [forge-1.16.5-36.2.19.jar:?] {}
        at net.minecraftforge.server.ServerMain$Runner.access$100(ServerMain.java:60) [forge-1.16.5-36.2.19.jar:?] {}
        at net.minecraftforge.server.ServerMain.main(ServerMain.java:57) [forge-1.16.5-36.2.19.jar:?] {}

A detailed walkthrough of the error, its code path and all known details is as follows:
---------------------------------------------------------------------------------------

-- Head --
Thread: main
Stacktrace:
        at de.erdbeerbaerlp.dcintegration.common.storage.CommandRegistry.<clinit>(CommandRegistry.java:27) ~[dcintegration:2.3.5] {re:classloading}
-- MOD dcintegration --
Details:
        Caused by 0: java.lang.ExceptionInInitializerError
                at de.erdbeerbaerlp.dcintegration.forge.DiscordIntegration.serverSetup(DiscordIntegration.java:133) ~[dcintegration:2.3.5] {re:classloading,re:mixin}
                at net.minecraftforge.eventbus.EventBus.doCastFilter(EventBus.java:247) ~[eventbus-4.0.0.jar:?] {}
                at net.minecraftforge.eventbus.EventBus.lambda$addListener$11(EventBus.java:239) ~[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.javafmlmod.FMLModContainer.acceptEvent(FMLModContainer.java:120) ~[forge:36.2] {re:classloading}
                at net.minecraftforge.fml.ModContainer.lambda$buildTransitionHandler$4(ModContainer.java:121) ~[forge:?] {re:classloading}
                at java.util.concurrent.CompletableFuture$AsyncRun.run(CompletableFuture.java:1640) ~[?:1.8.0_292] {}
                at java.util.concurrent.CompletableFuture$AsyncRun.exec(CompletableFuture.java:1632) ~[?:1.8.0_292] {}
                at java.util.concurrent.ForkJoinTask.doExec(ForkJoinTask.java:289) ~[?:1.8.0_292] {}
                at java.util.concurrent.ForkJoinPool$WorkQueue.runTask(ForkJoinPool.java:1056) ~[?:1.8.0_292] {}
                at java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1692) ~[?:1.8.0_292] {}
                at java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:175) ~[?:1.8.0_292] {}

        Mod File: dcintegration-forge-2.3.5-1.16.jar
        Failure message: Discord Integration (dcintegration) encountered an error during the sided_setup event phase
                java.lang.ExceptionInInitializerError: null
        Mod Version: 2.3.5
        Mod Issue URL: https://github.com/ErdbeerbaerLP/Discord-Chat-Integration/issues
        Exception message: java.lang.NullPointerException
Stacktrace:
        at de.erdbeerbaerlp.dcintegration.common.storage.CommandRegistry.<clinit>(CommandRegistry.java:27) ~[dcintegration:2.3.5] {re:classloading}
        at de.erdbeerbaerlp.dcintegration.forge.DiscordIntegration.serverSetup(DiscordIntegration.java:133) ~[dcintegration:2.3.5] {re:classloading,re:mixin}
        at net.minecraftforge.eventbus.EventBus.doCastFilter(EventBus.java:247) ~[eventbus-4.0.0.jar:?] {}
        at net.minecraftforge.eventbus.EventBus.lambda$addListener$11(EventBus.java:239) ~[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.javafmlmod.FMLModContainer.acceptEvent(FMLModContainer.java:120) ~[forge:36.2] {re:classloading}
        at net.minecraftforge.fml.ModContainer.lambda$buildTransitionHandler$4(ModContainer.java:121) ~[forge:?] {re:classloading}
        at java.util.concurrent.CompletableFuture$AsyncRun.run(CompletableFuture.java:1640) ~[?:1.8.0_292] {}
        at java.util.concurrent.CompletableFuture$AsyncRun.exec(CompletableFuture.java:1632) ~[?:1.8.0_292] {}
        at java.util.concurrent.ForkJoinTask.doExec(ForkJoinTask.java:289) ~[?:1.8.0_292] {}
        at java.util.concurrent.ForkJoinPool$WorkQueue.runTask(ForkJoinPool.java:1056) ~[?:1.8.0_292] {}
        at java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1692) ~[?:1.8.0_292] {}
        at java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:175) ~[?:1.8.0_292] {}

-- System Details --
Details:
        Minecraft Version: 1.16.5
        Minecraft Version ID: 1.16.5
        Operating System: Linux (amd64) version 5.15.2-2-MANJARO
        Java Version: 1.8.0_292, Oracle Corporation
        Java VM Version: OpenJDK 64-Bit Server VM (mixed mode), Oracle Corporation
        Memory: 2994210344 bytes (2855 MB) / 4290772992 bytes (4092 MB) up to 7635730432 bytes (7282 MB)
        CPUs: 16
        JVM Flags: 1 total; -Xmx8G
        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.19.jar object_holder_definalize PLUGINSERVICE
                /forge-1.16.5-36.2.19.jar runtime_enum_extender PLUGINSERVICE
                /accesstransformers-3.0.1.jar accesstransformer PLUGINSERVICE
                /forge-1.16.5-36.2.19.jar capability_inject_definalize PLUGINSERVICE
                /forge-1.16.5-36.2.19.jar runtimedistcleaner PLUGINSERVICE
                /mixin-0.8.4.jar mixin TRANSFORMATIONSERVICE
                /forge-1.16.5-36.2.19.jar fml TRANSFORMATIONSERVICE
        FML: 36.2
        Forge: net.minecraftforge:36.2.19
        FML Language Providers:
                javafml@36.2
                minecraft@1
                kotori_scala@2.13.5-build-2
                scorge@3.1.3
        Mod List:
                CyclopsCore-1.16.5-1.12.1.jar                     |Cyclops Core                  |cyclopscore                   |1.12.1              |ENQUEUE_IM|Manifest: NOSIGNATURE
                astralsorcery-1.16-1.16.5-1.13.12.jar             |Astral Sorcery                |astralsorcery                 |1.16.5-1.13.12      |ENQUEUE_IM|Manifest: 45:2b:0a:49:6b:65:3b:39:a9:dd:d2:5b:55:7f:82:47:a5:1d:7a:cc:7f:a8:69:73:72:53:6f:57:4d:b2:1a:b7
                supermartijn642configlib-1.0.9-mc1.16.jar         |SuperMartijn642's Config Lib  |supermartijn642configlib      |1.0.9               |ENQUEUE_IM|Manifest: NOSIGNATURE
                AdditionalEnchantedMiner-1.16.5-16.1.10.jar       |QuarryPlus                    |quarryplus                    |16.1.10             |ENQUEUE_IM|Manifest: 1a:13:52:63:6f:dc:0c:ad:7f:8a:64:ac:46:58:8a:0c:90:ea:2c:5d:11:ac:4c:d4:62:85:c7:d1:00:fa:9c:76
                advancedperipherals-1.16.5-0.7.5r.jar             |Advanced Peripherals          |advancedperipherals           |0.7.5r              |ENQUEUE_IM|Manifest: NOSIGNATURE
                CraftingAutomat-MC1.16.3-1.2.2.jar                |Crafting Automat              |craftingautomat               |1.2.2               |ENQUEUE_IM|Manifest: NOSIGNATURE
                emcbaubles-1.16.5-1.1.0.jar                       |EMC Baubles                   |emcbaubles                    |1.1.0               |ENQUEUE_IM|Manifest: NOSIGNATURE
                refinedpipes-0.5.1.jar                            |Refined Pipes                 |refinedpipes                  |0.5.1               |ENQUEUE_IM|Manifest: NOSIGNATURE
                prefab-1.6.5.14.jar                               |Prefab                        |prefab                        |1.6.5.14            |ENQUEUE_IM|Manifest: NOSIGNATURE
                ExtendedCrafting-1.16.5-3.1.10.jar                |Extended Crafting             |extendedcrafting              |3.1.10              |ENQUEUE_IM|Manifest: NOSIGNATURE
                HammerLib-1.16.5-16.3.27.jar                      |HammerLib                     |hammerlib                     |16.3.27             |ENQUEUE_IM|Manifest: 97:e8:52:e9:b3:f0:1b:83:57:4e:83:15:f7:e7:76:51:c6:60:5f:2b:45:59:19:a7:31:9e:98:69:56:4f:01:3c
                Industrial_AgricultureCore-1.16.5-1.8.13.jar      |Industrial Agriculture        |industrialagriculture         |1.16.5-1.8.13       |ENQUEUE_IM|Manifest: NOSIGNATURE
                modnametooltip_1.16.2-1.15.0.jar                  |Mod Name Tooltip              |modnametooltip                |1.15.0              |ENQUEUE_IM|Manifest: NOSIGNATURE
                Neat 1.7-27.jar                                   |Neat                          |neat                          |1.7-27              |ENQUEUE_IM|Manifest: NOSIGNATURE
                IronJetpacks-1.16.5-4.2.3.jar                     |Iron Jetpacks                 |ironjetpacks                  |4.2.3               |ENQUEUE_IM|Manifest: NOSIGNATURE
                BetterCaves-Forge-1.16.4-1.1.2.jar                |YUNG's Better Caves           |bettercaves                   |1.16.4-1.1.2        |ENQUEUE_IM|Manifest: NOSIGNATURE
                InitialInventory-5.0.2.22.jar                     |Initial Inventory             |initialinventory              |5.0.2.22            |ENQUEUE_IM|Manifest: NOSIGNATURE
                Controlling-7.0.0.28.jar                          |Controlling                   |controlling                   |7.0.0.28            |ENQUEUE_IM|Manifest: NOSIGNATURE
                Placebo-1.16.5-4.6.1.jar                          |Placebo                       |placebo                       |4.6.1               |ENQUEUE_IM|Manifest: NOSIGNATURE
                YungsApi-1.16.4-Forge-13.jar                      |YUNG's API                    |yungsapi                      |1.16.4-Forge-13     |ENQUEUE_IM|Manifest: NOSIGNATURE
                Powah-1.16.5-2.3.16.jar                           |Powah                         |powah                         |2.3.16              |ENQUEUE_IM|Manifest: NOSIGNATURE
                rangedpumps-0.8.2.jar                             |Ranged Pumps                  |rangedpumps                   |0.8.2               |ENQUEUE_IM|Manifest: NOSIGNATURE
                Bookshelf-Forge-1.16.5-10.3.29.jar                |Bookshelf                     |bookshelf                     |10.3.29             |ENQUEUE_IM|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
                reliquary-1.16.5-1.3.5.1100.jar                   |Reliquary                     |xreliquary                    |1.16.5-1.3.5.1100   |ENQUEUE_IM|Manifest: NOSIGNATURE
                usefulDNSv7.3.2.jar                               |usefulDNS                     |usefuldns                     |7.3.2               |ENQUEUE_IM|Manifest: NOSIGNATURE
                randompatches-2.4.4-forge.jar                     |RandomPatches                 |randompatches                 |2.4.4-forge         |ENQUEUE_IM|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
                buildinggadgets-1.16.5-3.8.2.jar                  |Building Gadgets              |buildinggadgets               |3.8.2               |ENQUEUE_IM|Manifest: NOSIGNATURE
                DarkUtilities-1.16.5-8.0.11.jar                   |Dark Utilities                |darkutils                     |8.0.11              |ENQUEUE_IM|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
                storagetech-1.16.4-R1.3.jar                       |Storage Tech                  |storagetech                   |1.16.4-R1.3         |ENQUEUE_IM|Manifest: NOSIGNATURE
                Morpheus-1.16.5-4.2.70.jar                        |Morpheus                      |morpheus                      |4.2.70              |ENQUEUE_IM|Manifest: NOSIGNATURE
                MekanismGenerators-1.16.5-10.0.24.453.jar         |Mekanism: Generators          |mekanismgenerators            |10.0.24             |ENQUEUE_IM|Manifest: NOSIGNATURE
                Auxilium-1.16.5-1.0.1.1.jar                       |Auxilium                      |auxilium                      |1.0.1.1             |ENQUEUE_IM|Manifest: NOSIGNATURE
                TMechworks-1.16.3-2.2.5.jar                       |Tinkers' Mechworks            |tmechworks                    |2.2.5               |ENQUEUE_IM|Manifest: NOSIGNATURE
                JustEnoughResources-1.16.3-0.12.0.102.jar         |Just Enough Resources         |jeresources                   |0.12.0.102          |ENQUEUE_IM|Manifest: NOSIGNATURE
                upm-1.16.5-1.0.13.jar                             |Universal Power Monitor       |upm                           |1.16.5-0.1.12       |ENQUEUE_IM|Manifest: NOSIGNATURE
                shetiphiancore-1.16-3.8.6.jar                     |ShetiPhian-Core               |shetiphiancore                |3.8.6               |ENQUEUE_IM|Manifest: NOSIGNATURE
                dcintegration-forge-2.3.5-1.16.jar                |Discord Integration           |dcintegration                 |2.3.5               |ERROR     |Manifest: NOSIGNATURE
                twilightforest-1.16.5-4.0.546-universal.jar       |The Twilight Forest           |twilightforest                |NONE                |ENQUEUE_IM|Manifest: NOSIGNATURE
                konkrete_1.3.0_MC_1.16.2-1.16.5.jar               |Konkrete                      |konkrete                      |1.3.0               |ENQUEUE_IM|Manifest: NOSIGNATURE
                PrettyPipes-1.9.5.jar                             |Pretty Pipes                  |prettypipes                   |1.9.5               |ENQUEUE_IM|Manifest: NOSIGNATURE
                PackMenu-1.16.5-2.5.0.jar                         |PackMenu                      |packmenu                      |2.5.0               |ENQUEUE_IM|Manifest: NOSIGNATURE
                industrial-foregoing-1.16.5-3.2.14.7-16.jar       |Industrial Foregoing          |industrialforegoing           |3.2.14.7            |ENQUEUE_IM|Manifest: NOSIGNATURE
                ExponentialPower-2.0.1.jar                        |Exponential Power             |exponentialpower              |2.0.1               |ENQUEUE_IM|Manifest: NOSIGNATURE
                endertanks-1.16-1.9.6.jar                         |EnderTanks                    |endertanks                    |1.9.6               |ENQUEUE_IM|Manifest: NOSIGNATURE
                CommonCapabilities-1.16.5-2.8.0.jar               |CommonCapabilities            |commoncapabilities            |2.8.0               |ENQUEUE_IM|Manifest: NOSIGNATURE
                BiomesOPlenty-1.16.5-13.1.0.484-universal.jar     |Biomes O' Plenty              |biomesoplenty                 |1.16.5-13.1.0.484   |ENQUEUE_IM|Manifest: NOSIGNATURE
                MekanismAdditions-1.16.5-10.0.24.453.jar          |Mekanism: Additions           |mekanismadditions             |10.0.24             |ENQUEUE_IM|Manifest: NOSIGNATURE
                valkyrielib-1.16.5-3.0.9.5.jar                    |ValkyrieLib                   |valkyrielib                   |1.16.5-3.0.9.5      |ENQUEUE_IM|Manifest: NOSIGNATURE
                envirocore-1.16.5-3.0.9.3.jar                     |Environmental Core            |envirocore                    |1.16.5-3.0.9.3      |ENQUEUE_IM|Manifest: NOSIGNATURE
                envirotech-1.16.5-3.0.9.4.jar                     |Environmental Tech            |envirotech                    |1.16.5-3.0.9.4      |ENQUEUE_IM|Manifest: NOSIGNATURE
                phantomfaces-1.16.5-1.1.0.jar                     |Phantomfaces                  |phantomfaces                  |1.1.0               |ENQUEUE_IM|Manifest: NOSIGNATURE
                Lollipop-1.16.5-3.2.9.jar                         |Lollipop                      |lollipop                      |3.2.9               |ENQUEUE_IM|Manifest: NOSIGNATURE
                ironfurnaces-1.16.5-2.7.7.jar                     |Iron Furnaces                 |ironfurnaces                  |2.7.7               |ENQUEUE_IM|Manifest: NOSIGNATURE
                supermartijn642corelib-1.0.15-mc1.16.5.jar        |SuperMartijn642's Core Lib    |supermartijn642corelib        |1.0.15              |ENQUEUE_IM|Manifest: NOSIGNATURE
                Botania-1.16.5-420.1.jar                          |Botania                       |botania                       |1.16.5-420.1        |ENQUEUE_IM|Manifest: NOSIGNATURE
                SolarFluxReborn-1.16.5-16.3.9.jar                 |Solar Flux Reborn             |solarflux                     |16.3.9              |ENQUEUE_IM|Manifest: NOSIGNATURE
                portality-1.16.5-3.2.5.jar                        |Portality                     |portality                     |3.2.5               |ENQUEUE_IM|Manifest: NOSIGNATURE
                curios-forge-1.16.5-4.0.6.5.jar                   |Curios API                    |curios                        |1.16.5-4.0.6.5      |ENQUEUE_IM|Manifest: NOSIGNATURE
                Patchouli-1.16.4-53.2.jar                         |Patchouli                     |patchouli                     |1.16.4-53.2         |ENQUEUE_IM|Manifest: NOSIGNATURE
                simplegens-1.16.5-3.0.9.2.jar                     |Simple Generators             |simplegens                    |1.16.5-3.0.9.2      |ENQUEUE_IM|Manifest: NOSIGNATURE
                Runelic-1.16.5-7.0.2.jar                          |Runelic                       |runelic                       |7.0.2               |ENQUEUE_IM|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
                MekanismTools-1.16.5-10.0.24.453.jar              |Mekanism: Tools               |mekanismtools                 |10.0.24             |ENQUEUE_IM|Manifest: NOSIGNATURE
                architectury-1.26.37.jar                          |Architectury                  |architectury                  |1.26.37             |ENQUEUE_IM|Manifest: NOSIGNATURE
                refinedcooking-1.0.1.jar                          |Refined Cooking               |refinedcooking                |1.0.1               |ENQUEUE_IM|Manifest: NOSIGNATURE
                CookingForBlockheads_1.16.5-9.3.4.jar             |Cooking for Blockheads        |cookingforblockheads          |9.3.4               |ENQUEUE_IM|Manifest: NOSIGNATURE
                refinedstorage-1.9.16.jar                         |Refined Storage               |refinedstorage                |1.9.16              |ENQUEUE_IM|Manifest: NOSIGNATURE
                cc-tweaked-1.16.5-1.99.0.jar                      |CC: Tweaked                   |computercraft                 |1.99.0              |ENQUEUE_IM|Manifest: NOSIGNATURE
                observerlib-1.16.5-1.5.3.jar                      |ObserverLib                   |observerlib                   |1.16.5-1.5.3        |ENQUEUE_IM|Manifest: NOSIGNATURE
                nbtperipheral-1.0.jar                             |NBT Peripheral, addition for C|nbtperipheral                 |1.0                 |ENQUEUE_IM|Manifest: NOSIGNATURE
                FallingTree-1.16.5-2.11.5.jar                     |FallingTree                   |fallingtree                   |2.11.5              |ENQUEUE_IM|Manifest: 3c:8e:df:6c:df:a6:2a:9f:af:64:ea:04:9a:cf:65:92:3b:54:93:0e:96:50:b4:52:e1:13:42:18:2b:ae:40:29
                CodeChickenLib-1.16.5-4.0.5.438-universal.jar     |CodeChicken Lib               |codechickenlib                |4.0.5.438           |ENQUEUE_IM|Manifest: 31:e6:db:63:47:4a:6e:e0:0a:2c:11:d1:76:db:4e:82:ff:56:2d:29:93:d2:e5:02:bd:d3:bd:9d:27:47:a5:71
                CBMultipart-1.16.5-3.0.3.122-universal.jar        |CBMultipart                   |cb_multipart                  |3.0.3.122           |ENQUEUE_IM|Manifest: 31:e6:db:63:47:4a:6e:e0:0a:2c:11:d1:76:db:4e:82:ff:56:2d:29:93:d2:e5:02:bd:d3:bd:9d:27:47:a5:71
                ProjectRed-1.16.5-4.11.0-beta-6-core.jar          |ProjectRed Core               |projectred-core               |4.11.0-beta-6       |ENQUEUE_IM|Manifest: NOSIGNATURE
                ProjectRed-1.16.5-4.10.0-transmission.jar         |ProjectRed Transmission       |projectred-transmission       |4.10.0              |ENQUEUE_IM|Manifest: NOSIGNATURE
                ProjectRed-1.16.5-4.11.0-beta-6-integration.jar   |ProjectRed Integration        |projectred-integration        |4.11.0-beta-6       |ENQUEUE_IM|Manifest: NOSIGNATURE
                QuantumStorage-1.16.4-5.3.0.jar                   |QuantumStorage                |quantumstorage                |5.3.0Alpha5         |ENQUEUE_IM|Manifest: NOSIGNATURE
                Cucumber-1.16.5-4.1.12.jar                        |Cucumber Library              |cucumber                      |4.1.12              |ENQUEUE_IM|Manifest: NOSIGNATURE
                ftb-library-forge-1605.3.4-build.90.jar           |FTB Library                   |ftblibrary                    |1605.3.4-build.90   |ENQUEUE_IM|Manifest: NOSIGNATURE
                EnderRift-1.16.5-2.2.13.jar                       |Ender-Rift                    |enderrift                     |2.2.13              |ENQUEUE_IM|Manifest: NOSIGNATURE
                Overloaded-1.16.5-0.0.96.jar                      |Overloaded                    |overloaded                    |0.0.96              |ENQUEUE_IM|Manifest: 8f:e1:00:20:a7:e0:d5:e3:c4:cd:aa:9f:76:9b:99:87:e0:09:9e:98:80:e2:57:c6:5d:d1:b1:c3:79:22:e5:65
                jei-1.16.5-7.7.1.137.jar                          |Just Enough Items             |jei                           |7.7.1.137           |ENQUEUE_IM|Manifest: NOSIGNATURE
                ImmersiveIndustry-1.16.5-0.1.2.jar                |Immersive Industry            |immersiveindustry             |1.16.5-0.1.2        |ENQUEUE_IM|Manifest: NOSIGNATURE
                EverlastingAbilities-1.16.5-1.7.2.jar             |EverlastingAbilities          |everlastingabilities          |1.7.2               |ENQUEUE_IM|Manifest: NOSIGNATURE
                AttributeFix-1.16.5-10.1.3.jar                    |AttributeFix                  |attributefix                  |10.1.3              |ENQUEUE_IM|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
                Mekanism-1.16.5-10.0.24.453.jar                   |Mekanism                      |mekanism                      |10.0.24             |ENQUEUE_IM|Manifest: NOSIGNATURE
                CTD-Core-1.16.5-2.1.1.jar                         |CTD Core                      |ctdcore                       |2.1.1               |ENQUEUE_IM|Manifest: NOSIGNATURE
                Waystones_1.16.5-7.6.4.jar                        |Waystones                     |waystones                     |7.6.4               |ENQUEUE_IM|Manifest: NOSIGNATURE
                Clumps-6.0.0.27.jar                               |Clumps                        |clumps                        |6.0.0.27            |ENQUEUE_IM|Manifest: NOSIGNATURE
                PrettyPipesFluids-0.4.1.jar                       |Pretty Fluid Pipes            |ppfluids                      |0.4.1               |ENQUEUE_IM|Manifest: NOSIGNATURE
                SimpleStorageNetwork-1.16.5-1.5.0.jar             |Simple Storage Network        |storagenetwork                |1.16.5-1.5.0        |ENQUEUE_IM|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
                MekanismMatter-1.20.1-Beta-1.16.5.jar             |Mekanism: Matter              |mekanismmatter                |1.19.0              |ENQUEUE_IM|Manifest: NOSIGNATURE
                configured-1.3.1-1.16.5.jar                       |Configured                    |configured                    |1.3.1               |ENQUEUE_IM|Manifest: NOSIGNATURE
                compactmachines-4.0.0-beta.2.jar                  |Compact Machines 4            |compactmachines               |4.0.0-beta.2        |ENQUEUE_IM|Manifest: NOSIGNATURE
                FarmingForBlockheads_1.16.5-7.3.1.jar             |Farming for Blockheads        |farmingforblockheads          |7.3.1               |ENQUEUE_IM|Manifest: NOSIGNATURE
                pneumaticcraft-repressurized-1.16.5-2.14.6-277.jar|PneumaticCraft: Repressurized |pneumaticcraft                |1.16.5-2.14.6-277   |ENQUEUE_IM|Manifest: NOSIGNATURE
                mcjtylib-1.16-5.1.1.jar                           |McJtyLib                      |mcjtylib                      |1.16-5.1.1          |ENQUEUE_IM|Manifest: NOSIGNATURE
                rftoolsbase-1.16-2.1.0.jar                        |RFToolsBase                   |rftoolsbase                   |1.16-2.1.0          |ENQUEUE_IM|Manifest: NOSIGNATURE
                xnet-1.16-3.0.14.jar                              |XNet                          |xnet                          |1.16-3.0.14         |ENQUEUE_IM|Manifest: NOSIGNATURE
                rftoolsstorage-1.16-2.0.14.jar                    |RFToolsStorage                |rftoolsstorage                |1.16-2.0.14         |ENQUEUE_IM|Manifest: NOSIGNATURE
                rftoolscontrol-1.16-4.0.12.jar                    |RFToolsControl                |rftoolscontrol                |1.16-4.0.12         |ENQUEUE_IM|Manifest: NOSIGNATURE
                rftoolsdim-1.16-7.0.18-beta.jar                   |RFToolsDimensions             |rftoolsdim                    |1.16-7.0.18-beta    |ENQUEUE_IM|Manifest: NOSIGNATURE
                ClickMachine-1.16.5-4.5.0.jar                     |Click Machine                 |clickmachine                  |4.5.0               |ENQUEUE_IM|Manifest: NOSIGNATURE
                projecte-integration-1.16.5-4.2.0.jar             |ProjectE Integration          |projecteintegration           |4.2.0               |ENQUEUE_IM|Manifest: NOSIGNATURE
                Toast-Control-1.16.4-4.3.1.jar                    |Toast Control                 |toastcontrol                  |4.3.1               |ENQUEUE_IM|Manifest: NOSIGNATURE
                FluidSystem-1.16.4-1.3.0.jar                      |FluidSystem                   |fluidsystem                   |1.3.0               |ENQUEUE_IM|Manifest: NOSIGNATURE
                EnderStorage-1.16.5-2.8.0.168-universal.jar       |EnderStorage                  |enderstorage                  |2.8.0.168           |ENQUEUE_IM|Manifest: 31:e6:db:63:47:4a:6e:e0:0a:2c:11:d1:76:db:4e:82:ff:56:2d:29:93:d2:e5:02:bd:d3:bd:9d:27:47:a5:71
                CraftTweaker-1.16.5-7.1.2.474.jar                 |CraftTweaker                  |crafttweaker                  |7.1.2.474           |ENQUEUE_IM|Manifest: NOSIGNATURE
                ProjectE-1.16.5-PE1.0.1B.jar                      |ProjectE                      |projecte                      |PE1.0.1B            |ENQUEUE_IM|Manifest: NOSIGNATURE
                rftoolspower-1.16-3.0.10.jar                      |RFToolsPower                  |rftoolspower                  |1.16-3.0.10         |ENQUEUE_IM|Manifest: NOSIGNATURE
                extradisks-1.16.4-1.5.1.jar                       |Extra Disks                   |extradisks                    |1.5.1               |ENQUEUE_IM|Manifest: NOSIGNATURE
                ImmersivePetroleum-1.16.5-3.3.0-8.jar             |Immersive Petroleum           |immersivepetroleum            |3.3.0-8             |ENQUEUE_IM|Manifest: NOSIGNATURE
                forge-1.16.5-36.2.19-universal.jar                |Forge                         |forge                         |36.2.19             |ENQUEUE_IM|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
                BrandonsCore-1.16.5-3.0.11.238-universal.jar      |Brandon's Core                |brandonscore                  |3.0.11.238          |ENQUEUE_IM|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
                Draconic-Evolution-1.16.5-3.0.18.428-universal.jar|Draconic Evolution            |draconicevolution             |3.0.18.428          |ENQUEUE_IM|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
                MysticalAgriculture-1.16.5-4.2.5.jar              |Mystical Agriculture          |mysticalagriculture           |4.2.5               |ENQUEUE_IM|Manifest: NOSIGNATURE
                MysticalAgradditions-1.16.5-4.2.4.jar             |Mystical Agradditions         |mysticalagradditions          |4.2.4               |ENQUEUE_IM|Manifest: NOSIGNATURE
                ironchest-1.16.5-11.2.21.jar                      |Iron Chests                   |ironchest                     |1.16.5-11.2.21      |ENQUEUE_IM|Manifest: NOSIGNATURE
                CraftingTweaks_1.16.5-12.2.1.jar                  |Crafting Tweaks               |craftingtweaks                |12.2.1              |ENQUEUE_IM|Manifest: NOSIGNATURE
                ZeroCore2-1.16.5-2.1.7.jar                        |Zero CORE 2                   |zerocore                      |1.16.5-2.1.7        |ENQUEUE_IM|Manifest: NOSIGNATURE
                ExtremeReactors2-1.16.5-2.0.33.jar                |Extreme Reactors              |bigreactors                   |1.16.5-2.0.33       |ENQUEUE_IM|Manifest: NOSIGNATURE
                forge-1.16.5-36.2.19-server.jar                   |Minecraft                     |minecraft                     |1.16.5              |ENQUEUE_IM|Manifest: NOSIGNATURE
                EnergyControl-forge-1.16.5-0.2.1.jar              |Energy Control                |energycontrol                 |1.16.5-0.2.1        |ENQUEUE_IM|Manifest: NOSIGNATURE
                cofh_core-1.16.5-1.4.0.3.jar                      |CoFH Core                     |cofh_core                     |1.4.0.3             |ENQUEUE_IM|Manifest: 75:0b:cc:9b:64:2e:9b:c4:41:d1:95:00:71:ee:87:1a:b3:5e:4b:da:8e:e8:39:00:fd:5d:e5:9c:40:42:33:09
                thermal_foundation-1.16.5-1.4.1.6.jar             |Thermal Series                |thermal                       |1.4.1.6             |ENQUEUE_IM|Manifest: 75:0b:cc:9b:64:2e:9b:c4:41:d1:95:00:71:ee:87:1a:b3:5e:4b:da:8e:e8:39:00:fd:5d:e5:9c:40:42:33:09
                thermal_innovation-1.16.5-1.4.1.3.jar             |Thermal Innovation            |thermal_innovation            |1.4.1.3             |ENQUEUE_IM|Manifest: 75:0b:cc:9b:64:2e:9b:c4:41:d1:95:00:71:ee:87:1a:b3:5e:4b:da:8e:e8:39:00:fd:5d:e5:9c:40:42:33:09
                thermal_expansion-1.16.5-1.4.1.2.jar              |Thermal Expansion             |thermal_expansion             |1.4.1.2             |ENQUEUE_IM|Manifest: 75:0b:cc:9b:64:2e:9b:c4:41:d1:95:00:71:ee:87:1a:b3:5e:4b:da:8e:e8:39:00:fd:5d:e5:9c:40:42:33:09
                thermal_locomotion-1.16.5-1.4.1.2.jar             |Thermal Locomotion            |thermal_locomotion            |1.4.1.2             |ENQUEUE_IM|Manifest: 75:0b:cc:9b:64:2e:9b:c4:41:d1:95:00:71:ee:87:1a:b3:5e:4b:da:8e:e8:39:00:fd:5d:e5:9c:40:42:33:09
                TConstruct-1.16.5-3.3.0.308.jar                   |Tinkers' Construct            |tconstruct                    |3.3.0.308           |ENQUEUE_IM|Manifest: NOSIGNATURE
                rftoolsutility-1.16-3.1.5.jar                     |RFToolsUtility                |rftoolsutility                |1.16-3.1.5          |ENQUEUE_IM|Manifest: NOSIGNATURE
                Dynmap-3.3-beta-2-forge-1.16.5.jar                |Dynmap                        |dynmap                        |3.3-beta-2-577      |ENQUEUE_IM|Manifest: NOSIGNATURE
                theoneprobe-1.16-3.1.4.jar                        |The One Probe                 |theoneprobe                   |1.16-3.1.4          |ENQUEUE_IM|Manifest: NOSIGNATURE
                MouseTweaks-2.14-mc1.16.2.jar                     |Mouse Tweaks                  |mousetweaks                   |2.14                |ENQUEUE_IM|Manifest: NOSIGNATURE
                titanium-1.16.5-3.2.8.7-22.jar                    |Titanium                      |titanium                      |3.2.8.7             |ENQUEUE_IM|Manifest: NOSIGNATURE
                ImmersiveEngineering-1.16.5-5.0.5-140.jar         |Immersive Engineering         |immersiveengineering          |1.16.5-5.0.5-140    |ENQUEUE_IM|Manifest: 44:39:94:cf:1d:8c:be:3c:7f:a9:ee:f4:1e:63:a5:ac:61:f9:c2:87:d5:5b:d9:d6:8c:b5:3e:96:5d:8e:3f:b7
                Dronecraft2_0.315.jar                             |DRONECRAFT 2                  |dronecraft_2                  |0.2.301             |ENQUEUE_IM|Manifest: NOSIGNATURE
                ChickenChunks-1.16.5-2.9.0.88-universal.jar       |ChickenChunks                 |chickenchunks                 |2.9.0.88            |ENQUEUE_IM|Manifest: 31:e6:db:63:47:4a:6e:e0:0a:2c:11:d1:76:db:4e:82:ff:56:2d:29:93:d2:e5:02:bd:d3:bd:9d:27:47:a5:71
                rftoolsbuilder-1.16-3.1.3.jar                     |RFToolsBuilder                |rftoolsbuilder                |1.16-3.1.3          |ENQUEUE_IM|Manifest: NOSIGNATURE
                jeiintegration_1.16.5-7.0.1.15.jar                |JEI Integration               |jeiintegration                |7.0.1.15            |ENQUEUE_IM|Manifest: NOSIGNATURE
                pipez-1.16.5-1.2.14.jar                           |Pipez                         |pipez                         |1.16.5-1.2.14       |ENQUEUE_IM|Manifest: NOSIGNATURE
                flywheel-1.16-0.2.5.jar                           |Flywheel                      |flywheel                      |1.16-0.2.5          |ENQUEUE_IM|Manifest: NOSIGNATURE
                create-mc1.16.5_v0.3.2g.jar                       |Create                        |create                        |v0.3.2g             |ENQUEUE_IM|Manifest: NOSIGNATURE
                Mantle-1.16.5-1.6.147.jar                         |Mantle                        |mantle                        |1.6.147             |ENQUEUE_IM|Manifest: NOSIGNATURE
                itemcollectors-1.1.3-mc1.16.jar                   |Item Collectors               |itemcollectors                |1.1.3               |ENQUEUE_IM|Manifest: NOSIGNATURE
                gravestone-1.16.5-1.0.7.jar                       |Gravestone Mod                |gravestone                    |1.16.5-1.0.7        |ENQUEUE_IM|Manifest: NOSIGNATURE
                thermal_cultivation-1.16.5-1.4.1.3.jar            |Thermal Cultivation           |thermal_cultivation           |1.4.1.3             |ENQUEUE_IM|Manifest: 75:0b:cc:9b:64:2e:9b:c4:41:d1:95:00:71:ee:87:1a:b3:5e:4b:da:8e:e8:39:00:fd:5d:e5:9c:40:42:33:09
                FastWorkbench-1.16.5-4.6.0.jar                    |Fast Workbench                |fastbench                     |4.6.0               |ENQUEUE_IM|Manifest: NOSIGNATURE
                polymorph-forge-1.16.5-0.33.jar                   |Polymorph                     |polymorph                     |1.16.5-0.33         |ENQUEUE_IM|Manifest: NOSIGNATURE
                AutoRegLib-1.6-49.jar                             |AutoRegLib                    |autoreglib                    |1.6-49              |ENQUEUE_IM|Manifest: NOSIGNATURE
                AkashicTome-1.4-16.jar                            |Akashic Tome                  |akashictome                   |1.4-16              |ENQUEUE_IM|Manifest: NOSIGNATURE
                Quark-r2.4-321.jar                                |Quark                         |quark                         |r2.4-321            |ENQUEUE_IM|Manifest: NOSIGNATURE
                materialis-1.16.5-2.3.0.jar                       |Materialis                    |materialis                    |1.16.5-2.3.0        |ENQUEUE_IM|Manifest: NOSIGNATURE
                torcherino-13.0.31.16.3.jar                       |Torcherino                    |torcherino                    |13.0.3              |ENQUEUE_IM|Manifest: NOSIGNATURE
                StorageDrawers-1.16.3-8.3.0.jar                   |Storage Drawers               |storagedrawers                |8.3.0               |ENQUEUE_IM|Manifest: NOSIGNATURE
                FluxNetworks-1.16.5-6.1.7.12.jar                  |Flux Networks                 |fluxnetworks                  |6.1.7.12            |ENQUEUE_IM|Manifest: NOSIGNATURE
                performant-1.16.2-5-3.79m.jar                     |Performant                    |performant                    |3.73m               |ENQUEUE_IM|Manifest: NOSIGNATURE
                enderchests-1.16-1.7.8.jar                        |EnderChests                   |enderchests                   |1.7.8               |ENQUEUE_IM|Manifest: NOSIGNATURE
                backpacked-1.10.1-1.16.3.jar                      |Backpacked                    |backpacked                    |1.10.1              |ENQUEUE_IM|Manifest: NOSIGNATURE
                FPS-Monitor-1.16.5-1.0.1.jar                      |FPS Monitor                   |fps                           |1.0.1               |ENQUEUE_IM|Manifest: NOSIGNATURE
                FastFurnace-1.16.5-4.5.0.jar                      |FastFurnace                   |fastfurnace                   |4.5.0               |ENQUEUE_IM|Manifest: NOSIGNATURE
                AppleSkin-mc1.16.2-forge-1.0.14.jar               |AppleSkin                     |appleskin                     |1.0.14              |ENQUEUE_IM|Manifest: NOSIGNATURE
                refinedstorageaddons-0.7.4.jar                    |Refined Storage Addons        |refinedstorageaddons          |0.7.4               |ENQUEUE_IM|Manifest: NOSIGNATURE
                SolarGeneration-1.16.5-2.4.0.jar                  |Solar Generation              |solargeneration               |2.4.0               |ENQUEUE_IM|Manifest: NOSIGNATURE
                Morph-o-Tool-1.4-27.jar                           |Morph-o-Tool                  |morphtool                     |1.4-27              |ENQUEUE_IM|Manifest: NOSIGNATURE
                OmegaCraft4.3.5.jar                               |Omega Craft                   |omegacraft                    |1.0                 |ENQUEUE_IM|Manifest: NOSIGNATURE
                DefaultOptions_1.16.5-12.2.1.jar                  |Default Options               |defaultoptions                |12.2.1              |ENQUEUE_IM|Manifest: NOSIGNATURE
        Crash Report UUID: 648457a3-3146-48ac-a781-5712b42d3025

Additional Information

Here's the info on the crash from latest.log:

[15Dec2021 17:09:20.687] [Forge Version Check/INFO] [net.minecraftforge.fml.VersionChecker/]: [projectred-transmission] Starting version check at https://version-check.covers1624.net/check/?mod=ProjectRed&mc=1.16.5
[15Dec2021 17:09:20.804] [modloading-worker-0/INFO] [STDERR/]: [de.erdbeerbaerlp.dcintegration.common.Discord:getChannel:300]: Failed to get channel with ID '920852675401248809', falling back to default channel
[15Dec2021 17:09:20.805] [modloading-worker-0/ERROR] [net.minecraftforge.fml.javafmlmod.FMLModContainer/]: Exception caught during firing event: null
        Index: 1
        Listeners:
                0: NORMAL
                1: net.minecraftforge.eventbus.EventBus$$Lambda$2844/1010955966@1df61fa7
java.lang.ExceptionInInitializerError
        at de.erdbeerbaerlp.dcintegration.forge.DiscordIntegration.serverSetup(DiscordIntegration.java:133)
        at net.minecraftforge.eventbus.EventBus.doCastFilter(EventBus.java:247)
        at net.minecraftforge.eventbus.EventBus.lambda$addListener$11(EventBus.java:239)
        at net.minecraftforge.eventbus.EventBus.post(EventBus.java:302)
        at net.minecraftforge.eventbus.EventBus.post(EventBus.java:283)
        at net.minecraftforge.fml.javafmlmod.FMLModContainer.acceptEvent(FMLModContainer.java:120)
        at net.minecraftforge.fml.ModContainer.lambda$buildTransitionHandler$4(ModContainer.java:121)
        at java.util.concurrent.CompletableFuture$AsyncRun.run(CompletableFuture.java:1640)
        at java.util.concurrent.CompletableFuture$AsyncRun.exec(CompletableFuture.java:1632)
        at java.util.concurrent.ForkJoinTask.doExec(ForkJoinTask.java:289)
        at java.util.concurrent.ForkJoinPool$WorkQueue.runTask(ForkJoinPool.java:1056)
        at java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1692)
        at java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:175)
Caused by: java.lang.NullPointerException
        at de.erdbeerbaerlp.dcintegration.common.storage.CommandRegistry.<clinit>(CommandRegistry.java:27)
        ... 13 more

[15Dec2021 17:09:20.807] [modloading-worker-0/ERROR] [net.minecraftforge.fml.javafmlmod.FMLModContainer/LOADING]: Caught exception during event FMLDedicatedServerSetupEvent dispatch for modid dcintegration
java.lang.ExceptionInInitializerError: null
        at de.erdbeerbaerlp.dcintegration.forge.DiscordIntegration.serverSetup(DiscordIntegration.java:133) ~[dcintegration:2.3.5]
        at net.minecraftforge.eventbus.EventBus.doCastFilter(EventBus.java:247) ~[eventbus-4.0.0.jar:?]
        at net.minecraftforge.eventbus.EventBus.lambda$addListener$11(EventBus.java:239) ~[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.javafmlmod.FMLModContainer.acceptEvent(FMLModContainer.java:120) ~[forge:36.2]
        at net.minecraftforge.fml.ModContainer.lambda$buildTransitionHandler$4(ModContainer.java:121) ~[forge:?]
        at java.util.concurrent.CompletableFuture$AsyncRun.run(CompletableFuture.java:1640) [?:1.8.0_292]
        at java.util.concurrent.CompletableFuture$AsyncRun.exec(CompletableFuture.java:1632) [?:1.8.0_292]
        at java.util.concurrent.ForkJoinTask.doExec(ForkJoinTask.java:289) [?:1.8.0_292]
        at java.util.concurrent.ForkJoinPool$WorkQueue.runTask(ForkJoinPool.java:1056) [?:1.8.0_292]
        at java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1692) [?:1.8.0_292]
        at java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:175) [?:1.8.0_292]
Caused by: java.lang.NullPointerException
        at de.erdbeerbaerlp.dcintegration.common.storage.CommandRegistry.<clinit>(CommandRegistry.java:27) ~[dcintegration:2.3.5]
        ... 13 more
[15Dec2021 17:09:20.812] [main/FATAL] [net.minecraftforge.fml.ModLoader/LOADING]: Failed to complete lifecycle event SIDED_SETUP, 1 errors found
[15Dec2021 17:09:20.830] [main/FATAL] [net.minecraftforge.common.ForgeMod/]: Preparing crash report with UUID 648457a3-3146-48ac-a781-5712b42d3025
[15Dec2021 17:09:20.831] [main/INFO] [STDOUT/]: [net.minecraft.crash.CrashReport:func_85057_a:196]: Negative index in crash report handler (16/18)
[15Dec2021 17:09:20.835] [main/FATAL] [net.minecraftforge.fml.server.ServerModLoader/]: Crash report saved to ./crash-reports/crash-2021-12-15_17.09.20-fml.txt
[15Dec2021 17:09:20.838] [main/FATAL] [net.minecraft.server.Main/]: Failed to start the minecraft server
net.minecraftforge.fml.LoadingFailedException: Loading errors encountered: [
        Discord Integration (dcintegration) encountered an error during the sided_setup event phase
§7java.lang.ExceptionInInitializerError: null
]
        at net.minecraftforge.fml.ModLoader.waitForTransition(ModLoader.java:269) ~[forge:?]
        at net.minecraftforge.fml.ModLoader.dispatchAndHandleError(ModLoader.java:244) ~[forge:?]
        at net.minecraftforge.fml.ModLoader.loadMods(ModLoader.java:213) ~[forge:?]
        at net.minecraftforge.fml.server.ServerModLoader.load(ServerModLoader.java:45) ~[forge:?]
        at net.minecraft.server.Main.main(Main.java:95) ~[?:?]
        at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_292]
        at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_292]
        at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_292]
        at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_292]
        at net.minecraftforge.fml.loading.FMLServerLaunchProvider.lambda$launchService$0(FMLServerLaunchProvider.java:51) ~[forge-1.16.5-36.2.19.jar:36.2]
        at cpw.mods.modlauncher.LaunchServiceHandlerDecorator.launch(LaunchServiceHandlerDecorator.java:37) [modlauncher-8.0.9.jar:?]
        at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:54) [modlauncher-8.0.9.jar:?]
        at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:72) [modlauncher-8.0.9.jar:?]
        at cpw.mods.modlauncher.Launcher.run(Launcher.java:82) [modlauncher-8.0.9.jar:?]
        at cpw.mods.modlauncher.Launcher.main(Launcher.java:66) [modlauncher-8.0.9.jar:?]
        at net.minecraftforge.server.ServerMain$Runner.runLauncher(ServerMain.java:63) [forge-1.16.5-36.2.19.jar:?]
        at net.minecraftforge.server.ServerMain$Runner.access$100(ServerMain.java:60) [forge-1.16.5-36.2.19.jar:?]
        at net.minecraftforge.server.ServerMain.main(ServerMain.java:57) [forge-1.16.5-36.2.19.jar:?]

This is with version 2.3.5

ErdbeerbaerLP commented 2 years ago

Will make thoose error messages say more in next version

Try re-inviting your bot with the URL from the guide, it does not seem to have slash command permissions