String too big ошибка в майнкрафте

Скрыть объявление

В преддверии глобального обновления, мы проводим исследования, которые помогут нам сделать опыт пользования форумом ещё удобнее. Помогите нам, примите участие!
Статус темы:

Закрыта.
  1. После написания команды для перевода и текст, который необходимо перевести

    Выкидывает из сервера и в консоль выдает ошибку: io.netty.handler.codec.EncoderException: String too big (was 146952 bytes encoded, max 32767)

    С чем это связано?

    Код перевода:

        public static String translate(String langFrom, String langTo, String text) throws IOException {
            String urlStr = "https://script.google.com/macros/s/AKfycbzhi3gpfD8b5PZ2pWS0pGCFOU0jF9vxJL2d-G9HQBTrZSfT9u4/exec" +
                    "?q=" + encode(text, StandardCharsets.UTF_8.toString()) + "&target=" + langTo + "&source=" + langFrom;
            URL url = new URL(urlStr);
            StringBuilder response = new StringBuilder();
            HttpURLConnection con = (HttpURLConnection) url.openConnection();
            con.setRequestProperty("User-Agent", "Mozilla/5.0");
            BufferedReader in = new BufferedReader(new InputStreamReader(con.getInputStream()));
            String inputLine;
            while ((inputLine = in.readLine()) != null) {
                response.append(inputLine);
            }
            in.close();
            return response.toString();
        }

    Код использования:

                func = (sender, args) -> {
                    final List<ECommand> cmds = new ArrayList<>(instance.getRegisteredCommands());
    
                    cmds.add(this);
    
                    if (!(sender instanceof Player)) return;
    
                    Player p = (Player) sender;
    
                    UUID id = p.getUniqueId();
    
                    StringBuilder sb = new StringBuilder();
                    for (int i = 0; i < args.length; i++) sb.append(args[i]).append(' ');
                    if(sb.length() < 3) {
                        send(sender, translateAlternateColorCodes('&', "&cПереведенный текст не может быть меньше 3 символов"));
                        return;
                    }
    
                    if (sender.hasPermission(getPermission()) || sender.isOp()) {
                        ru.remove(id);
                        en.add(id);
                        send(sender, translateAlternateColorCodes('&', "&c&l[TRANSLATOR] &fПереведенный текст: " + translate("en", "ru", sb.toString())));
                        send(sender, translateAlternateColorCodes('&', "&c&l[TRANSLATOR] &fЗапрос на перевод текста: &9(" + sb.toString() + ")"));
                        return;
                    }
                    send(sender, translateAlternateColorCodes('&', getString("NotHavePermission")));
                };

    if (sender.hasPermission(getPermission()) || sender.isOp()) {
    ru.remove(id);
    en.add(id);
    send(sender, translateAlternateColorCodes(‘&’, «&c&l[TRANSLATOR] &fПереведенный текст: » + translate(«en», «ru», sb.toString())));
    send(sender, translateAlternateColorCodes(‘&’, «&c&l[TRANSLATOR] &fЗапрос на перевод текста: &9(» + sb.toString() + «)»));
    return;
    }


  2. Ission

    Ission
    Старожил
    Девелопер
    Пользователь

    Баллы:
    173
    Skype:
    lokivava

    С тем, что «String too big (was 146952 bytes encoded, max 32767)». То есть строка текста слишком длинная.

  3. У меня идентичный метод в переводе. Что не так?

  4. Почему он выводит какую-то фигню вместо текста?

    Часть из этого, так как не дает залить полностью

    [19:10:42] [Server thread/INFO]: <!DOCTYPE html><html lang="ru">  <head>  <meta charset="utf-8">  <meta content="width=300, initial-scale=1" name="viewport">  <meta name="google-site-verification" content="LrdTUW9psUAMbh4Ia074-BPEVmcpBxF6Gwf0MSgQXZs">  <title>Вход – Google Аккаунты</title>  <style>  @font-face {  font-family: 'Open Sans';  font-style: normal;  font-weight: 300;  src: url(//fonts.gstatic.com/s/opensans/v15/mem5YaGs126MiZpBA-UN_r8OVuhs.ttf) format('truetype');}@font-face {  font-family: 'Open Sans';  font-style: normal;  font-weight: 400;  src: url(//fonts.gstatic.com/s/opensans/v15/mem8YaGs126MiZpBA-UFUZ0e.ttf) format('truetype');}  </style>  <style>  h1, h2 {  -webkit-animation-duration: 0.1s;  -webkit-animation-name: fontfix;  -webkit-animation-iteration-count: 1;  -webkit-animation-timing-function: linear;  -webkit-animation-delay: 0;  }  @-webkit-keyframes fontfix {  from {  opacity: 1;  }  to {  opacity: 1;  }  }  </style><style>  html, body {  font-family: Arial, sans-serif;  background: #fff;  margin: 0;  padding: 0;  border: 0;  position: absolute;  height: 100%;  min-width: 100%;  font-size: 13px;  color: #404040;  direction: ltr;  -webkit-text-size-adjust: none;  }  button,  input[type=button],  input[type=submit] {  font-family: Arial, sans-serif;  font-size: 13px;  }  a,  a:hover,  a:visited {  color: #427fed;  cursor: pointer;  text-decoration: none;  }  a:hover {  text-decoration: underline;  }  h1 {  font-size: 20px;  color: #262626;  margin: 0 0 15px;  font-weight: normal;  }  h2 {  font-size: 14px;  color: #262626;  margin: 0 0 15px;  font-weight: bold;  }  input[type=email],  input[type=number],  input[type=password],  input[type=tel],  input[type=text],  input[type=url] {  -moz-appearance: none;  -webkit-appearance: none;  appearance: none;  display: inline-block;  height: 36px;  padding: 0 8px;  margin: 0;  background: #fff;  border: 1px solid #d9d9d9;  border-top: 1px solid #c0c0c0;  -moz-box-sizing: border-box;  -webkit-box-sizing: border-box;  box-sizing: border-box;  -moz-border-radius: 1px;  -webkit-border-radius: 1px;  border-radius: 1px;  font-size: 15px;  color: #404040;  }  input[type=email]:hover,  input[type=number]:hover,  input[type=password]:hover,  input[type=tel]:hover,  input[type=text]:hover,  input[type=url]:hover {  border: 1px solid #b9b9b9;  border-top: 1px solid #a0a0a0;  -moz-box-shadow: inset 0 1px 2px rgba(0,0,0,0.1);  -webkit-box-shadow: inset 0 1px 2px rgba(0,0,0,0.1);  box-shadow: inset 0 1px 2px rgba(0,0,0,0.1);  }  input[type=email]:focus,  input[type=number]:focus,  input[type=password]:focus,  input[type=tel]:focus,  input[type=text]:focus,  input[type=url]:focus {  outline: none;  border: 1px solid #4d90fe;  -moz-box-shadow: inset 0 1px 2px rgba(0,0,0,0.3);  -webkit-box-shadow: inset 0 1px 2px rgba(0,0,0,0.3);  box-shadow: inset 0 1px 2px rgba(0,0,0,0.3);  }  input[type=checkbox],  input[type=radio] {  -webkit-appearance: none;  display: inline-block;  width: 13px;  height: 13px;  margin: 0;  cursor: pointer;  vertical-align: bottom;  background: #fff;  border: 1px solid #c6c6c6;  -moz-border-radius: 1px;  -webkit-border-radius: 1px;  border-radius: 1px;  -moz-box-sizing: border-box;  -webkit-box-sizing: border-box;  box-sizing: border-box;  position: relative;  }  input[type=checkbox]:active,  input[type=radio]:active {  background: #ebebeb;  }  input[type=checkbox]:hover {  border-color: #c6c6c6;  -moz-box-shadow: inset 0 1px 2px rgba(0,0,0,0.1);  -webkit-box-shadow: inset 0 1px 2px rgba(0,0,0,0.1);  box-shadow: inset 0 1px 2px rgba(0,0,0,0.1);  }  input[type=radio] {  -moz-border-radius: 1em;  -webkit-border-radius: 1em;  border-radius: 1em;  width: 15px;  height: 15px;  }  input[type=checkbox]:checked,  input[type=radio]:checked {  background: #fff;  }  input[type=radio]:checked::after {  content: '';  display: block;  position: relative;  top: 3px;  left: 3px;  width: 7px;  height: 7px;  background: #666;  -moz-border-radius: 1em;  -webkit-border-radius: 1em;  border-radius: 1em;  }  input[type=checkbox]:checked::after {  content: url(https://ssl.gstatic.com/ui/v1/menu/checkmark.png);  display: block;  position: absolute;  top: -6px;  left: -5px;  }  input[type=checkbox]:focus {  outline: none;  border-color: #4d90fe;  }  .stacked-label {  display: block;  font-weight: bold;  margin: .5em 0;  }  .hidden-label {  position: absolute !important;  clip: rect(1px 1px 1px 1px); /* IE6, IE7 */  clip: rect(1px, 1px, 1px, 1px);  height: 0px;  width: 0px;  overflow: hidden;  visibility: hidden;  }  input[type=checkbox].form-error,  input[type=email].form-error,  input[type=number].form-error,  input[type=password].form-error,  input[type=text].form-error,  input[type=tel].form-error,  input[type=url].form-error {  border: 1px solid #dd4b39;  }  .error-msg {  margin: .5em 0;  display: block;  color: #dd4b39;  line-height: 17px;  }  .help-link {  background: #dd4b39;  padding: 0 5px;  color: #fff;  font-weight: bold;  display: inline-block;  -moz-border-radius: 1em;  -webkit-border-radius: 1em;  border-radius: 1em;  text-decoration: none;  position: relative;  top: 0px;  }  .help-link:visited {  color: #fff;  }  .help-link:hover {  color: #fff;  background: #c03523;  text-decoration: none;  }  .help-link:active {  opacity: 1;  background: #ae2817;  }  .wrapper {  position: relative;  min-height: 100%;  }  .content {  padding: 0 44px;  }  .main {  padding-bottom: 100px;  }  /* For modern browsers */  .clearfix:before,  .clearfix:after {  content: "";  display: table;  }  .clearfix:after {  clear: both;  }  /* For IE 6/7 (trigger hasLayout) */  .clearfix {  zoom:1;  }  .google-header-bar {  height: 71px;  border-bottom: 1px solid #e5e5e5;  overflow: hidden;  }  .header .logo {  background-image: url(https://ssl.gstatic.com/accounts/ui/logo_1x.png);  background-size: 116px 38px;  background-repeat: no-repeat;  margin: 17px 0 0;  float: left;  height: 38px;  width: 116px;  }  .header .logo-w {  background-image: url(https://ssl.gstatic.com/images/branding/googlelogo/1x/googlelogo_color_112x36dp.png);  background-size: 112px 36px;  margin: 21px 0 0;  }  .header .secondary-link {  margin: 28px 0 0;  float: right;  }  .header .secondary-link a {  font-weight: normal;  }  .google-header-bar.centered {  border: 0;  height: 108px;  }  .google-header-bar.centered .header .logo {  float: none;  margin: 40px auto 30px;  display: block;  }  .google-header-bar.centered .header .secondary-link {  display: none  }  .google-footer-bar {  position: absolute;  bottom: 0;  height: 35px;  width: 100%;  border-top: 1px solid #e5e5e5;  overflow: hidden;  }  .footer {  padding-top: 7px;  font-size: .85em;  white-space: nowrap;  line-height: 0;  }  .footer ul {  float: left;  max-width: 80%;  min-height: 16px;  padding: 0;  }  .footer ul li {  color: #737373;  display: inline;  padding: 0;  padding-right: 1.5em;  }  .footer a {  color: #737373;  }  .lang-chooser-wrap {  float: right;  display: inline;  }  .lang-chooser-wrap img {  vertical-align: top;  }  .lang-chooser {  font-size: 13px;  height: 24px;  line-height: 24px;  }  .lang-chooser option {  font-size: 13px;  line-height: 24px;  }  .hidden {  height: 0px;  width: 0px;  overflow: hidden;  visibility: hidden;  display: none !important;  }  .banner {  text-align: center;  }  .card {  background-color: #f7f7f7;  padding: 20px 25px 30px;  margin: 0 auto 25px;  width: 304px;  -moz-border-radius: 2px;  -webkit-border-radius: 2px;  border-radius: 2px;  -moz-box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3);  -webkit-box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3);  box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3);  }  .card > *:first-child {  margin-top: 0;  }  .rc-button,  .rc-button:visited {  display: inline-block;  min-width: 46px;  text-align: center;  color: #444;  font-size: 14px;  font-weight: 700;  height: 36px;  padding: 0 8px;  line-height: 36px;  -moz-border-radius: 3px;  -webkit-border-radius: 3px;  border-radius: 3px;  -o-transition: all 0.218s;  -moz-transition: all 0.218s;  -webkit-transition: all 0.218s;  transition: all 0.218s;  border: 1px solid #dcdcdc;  background-color: #f5f5f5;  background-image: -webkit-linear-gradient(top,#f5f5f5,#f1f1f1);  background-image: -
  5. можешь объясниться для чего ты отправляешь GET запрос на этот URI?

    пс
    https://cloud.google.com/translate/docs/reference/rest/v2/translate

  6. на дату старайся поглядывать прежде чем что-то копировать))
    Asked 9 years, 4 months ago
    Ответы протухли уже

    пс
    обращайся сначала к первоисточнику, в твоем случае документация от самого гугла, там всё норм расписано
    upload_2021-4-7_19-58-8.png

Статус темы:

Закрыта.

Поделиться этой страницей


Rubukkit - свой сервер Minecraft

Ошибка «внутреннее исключение» или Internal Exception с io netty handler либо Java IO IOException в Minecraft случаются по причине того, что игра теряет подключение к серверу.

А вот сбоить подключение, как известно, может по самым разным причинам. Следовательно, в каждом отдельном случае устраняется проблема тоже разными способами, притом вполне себе стандартными.

О них и расскажем. Итак,..

что делать, когда в Minecraft отваливается подключение с ошибкой io netty handler или Java IO IOException

Значит, первым делом просто проверяем подключение (перезагружаем роутер, переподключаем комп к Wi-Fi заново, переподключаем его напрямую через кабель, перезагружаем, запускаем Minecraft от имени администратора, проверяем и отключаем родительский контроль и т.д.) далее действуем следующим порядком:

#1 — проверяем состояние сервера

… для того, чтобы определить где именно случился сбой подключения — на стороне сервера, или локально. А для того, чтобы оперативно проверить и текущее состояние сервера игры, и текущее состояние подключения со своей стороны, просто подключаемся к тестовому серверу с IP: test.prisonfun.com.

Не пропустите: ОШИБКА С КОДОМ 0X803F8001 В MINECRAFT: ЧТО ЗНАЧИТ И КАК УСТРАНЯТЬ

Если подключится получается без проблем, то с клиентом игры и с настройками компа все в порядке. Данный сервер поддерживает все версии Minecraft и обновляется регулярно, потому оптимально подходит для оперативного выявления любых потенциально возможных проблем с подключением.

В противном же случае, то есть, когда подключиться именно к этому серверу не получилось, то, вероятнее всего, сбой подключения случился на стороне пользователя. И надо его устранять. Потому идем дальше.

#2 — отключаем брандмауэр, антивирус и VPN

Мера это временная, но крайне необходимая в случае, когда нужно быстро определить и устранить причину ошибок io netty handler или Java IO IOException в Minecraft. Поэтому:

  • отключаем брандмауэр Windows:
    • жмем Win+R с клавиатуры, в строке «Выполнить» пишем control и жмем Enter;
    • в окне Панели управления кликаем «Система и безопасность» и далее — «Брандмауэр Windows«;
    • в следующем окне слева жмем «Включение и отключение брандмауэра Windows«;
    • отключаем брандмауэр для обоих типов сети — для домашней и рабочей и для общественной;
    • кликаем ОК.

После этого снова пробуем подключиться к IP: test.prisonfun.com. Если снова не получилось то:

  • отключаем антивирус — через панель управления программы;
  • отключаем VPN

И снова подключаемся тестовому IP: test.prisonfun.com.

Не пропустите: MINECRAFT RTX С ТРАССИРОВКОЙ ЛУЧЕЙ: ЕСЛИ НЕ ВКЛЮЧАЕТСЯ И ПРОЧИЕ ПРОБЛЕМЫ

Опять безрезультатно? Тогда..

#3 — обновляем Java

Minecraft без Java не работает (и не должен). Более того, во избежание проблем с игрой Java на компе желательно иметь в самой последней версии. Обновляется эта самая версия стандартно:

  • идем на официальную страницу загрузки Java — [ССЫЛКА];
  • качаем и устанавливаем самую свежую версию Java.

Попутно в случае с проблемкой «внутреннего исключения» (ошибка io.netty.handler и Java.IO.IOException) не лишним также будет включить функцию Java Native Sandbox, а для этого:

  • жмем «Пуск«, в строке поиска системы пишем java и в результатах выше кликаем «Configure Java«;
  • в открывшемся окне переходим во вкладку «Advanced«;
  • список параметров прокручиваем до раздела «Advanced security settings» и активируем опцию «Enable the operating system’s restricted environment (native sandbox)«;
  • жмем «Применить» и «ОК«.

После перерезагружаем комп (это важно!), запускаем Minecraft и подключаемся к IP: test.prisonfun.com. Снова никак?

Не пропустите: MINECRAFT CLASSIC В БРАУЗЕРЕ: ПОЧЕМУ ТОРМОЗИТ И КАК ПОДНЯТЬ FPS

перенастраиваем DNS

Процедура тоже стандартная:

  • жмем Win+R с клавиатуры, в строке «Выполнить» пишем control и жмем Enter;
  • в окне Панели управления кликаем «Сеть и Интернет» и далее — «Центр управления сетями и общим доступом«;
  • находим с списке сетей свое текущее подключение («Ethernet» или «WiFi») и кликаем ссылку «сетевое соединение«;
  • в следующем окне жмем кнопку «Свойства» и далее в окне свойств подключения:
    • двойным кликом кликаем по строке «Протокол интернета версии 4 (IPv4)» в компонентах;
    • в открывшемся окошке активируем опцию «Использовать следующие адреса DNS-серверов» и ниже
    • для «Предпочитаемый DNS-сервер» прописываем 8.8.8.8
    • для «Альтернативный DNS-сервер» прописываем 8.8.4.4
    • и жмем ОК.

Перезагружаем комп, запускаем Minecraft и пробуем подключиться к IP: test.prisonfun.com.

Не пропустите: КАК СОЗДАТЬ НАСТОЯЩИЙ КОМПЬЮТЕР В MINECRAFT: О ВОЗМОЖНОСТЯХ КРАСНОГО КАМНЯ

Если после перенастройки DNS (и всех предыдущих мер) устранить проблему не удалось, то, очень вероятно, что причина сбоя — в самой игре, а точнее в имеющейся сборке и/или  в установленных модах. Поэтому

#4 — выполняем чистую переустановку Minecraft

То есть, качаем последнюю версию Minecraft с официального сайта и устанавливаем её безо всяких модов. Сделать нужно следующее:

  • открываем официальный лаунчер Minecraft (либо сначала качаем его и устанавливаем — [ССЫЛКА] — и затем открываем);
  • в главном меню открываем вкладку «Установки» (вверху) и жмем «Новая установка«;
  • выбираем версию Minecraft (разработчик рекомендует ставить самую последнюю) и жмем «Загрузить«;
  • далее проверяем, чтобы в меню лаунчера выбрана была именно нужная версия и жмем «Играть«;
  • после запуска Minecraft проверяем подключение через IP: test.prisonfun.com.

Не пропустите: УСТАРЕВШИЙ КЛИЕНТ MINECRAFT: ПОЧЕМУ, И ЧТО С ЭТИМ ДЕЛАТЬ?

Ну а если игра снова выдает «внутреннее исключение» с io netty handler либо Java IO IOException (а такое тоже может быть), значит придется переустановить её в другое место. Для этого:

  • открываем официальный лаунчер Minecraft (ссылку см. выше);
  • в главном меню открываем вкладку «Установки» (вверху) и жмем «Новая установка«;
  • выбираем самую новую (рекомендуется);
  • жмем кнопку «Обзор» и указываем другое место установки игры (либо просто кликаем «Рабочий стол«) и жмем ОК;
  • теперь кликаем «Загрузить«;
  • далее проверяем, чтобы в меню лаунчера выбрана была именно нужная версия и жмем «Играть«.

После запуска Minecraft проверяем подключение через IP: test.prisonfun.com. Если опять никак, то тогда еще раз, еще внимательнее проверяем подключение, а также «родительский контроль«. Вероятно, дело как раз в последнем…

Почему появилась ошибка?

Тщательно проанализировав форумы, посвященные Minecraft, можно прийти к выводу, что преимущественно причиной появления программного сбоя становится антивирус или включенный брандмауэр Windows. Эти сервисы блокируют соединение, поэтому игрок лишается возможности подключиться к серверу. Когда появляется рассматриваемая ошибка, обязательно проверьте параметры безопасности, возможно, IP сервера придется добавить в исключения.

Еще одной причиной появления ошибки становится загрузка игры из непроверенных источников, например, малоизвестных torrent-трекеров. Программный сбой мог также возникнуть вследствие некорректной инсталляции мода. Не исключено, что вам удастся решить проблему путем переустановки.

Когда с причинами разобрались, можно переходить к поиску решения. Предлагаем вашему вниманию несколько действенных методов восстановить корректный запуск игры и подключение к серверу.

Предположим, что ошибка появляется на этапе подключения к сети. Это означает, что вам необходимо создать локальную сеть с помощью специального софта. Для этого подойдет следующий софт – Hamachi или Tunngle. Это проверенный способ, который помог игрокам. Предварительно отключите брандмауэр и антивирус, кстати возможно они и блокируют доступ к серверам.

Ошибка при запуске игры

Предположим, что вы скачали игру, но она не запускается. Что делать в такой ситуации? Придерживайтесь простой пошаговой инструкции:

  1. Загрузите игру с проверенного портала.
  2. Очистите кэш в игре с помощью специальной программы.

Скачивайте игры только с проверенных порталов.

Решение проблем с Java

  1. Сервер offline, отключен или на данный момент проводится профилактика.
  2. Файл, программа, служба блокирует коннект.
  3. Неправильные настройки портов или IP.
  4. Установленная версия Java устарела.

Появление ошибки из-за низкого пинга

Несколько дополнительных советов

Предложенные выше способы не помогли? Тогда воспользуйтесь одним из следующих советов:

  1. Перезапустите компьютер.
  2. Переустановите Minecraft.
  3. Почистите операционную систему с помощью CCleaner.
  4. Перезапустите игру.
  5. Установите актуальную версию Java.

Current thread (0x45c63400): JavaThread «AWT-Windows» daemon [_thread_in_native, >
siginfo: ExceptionCode=0xc0000005, reading address 0x00000000

Registers:
EAX=0x46eaf4f4, EBX=0x000000c0, ECX=0x0000007e, EDX=0x000000c0
ESP=0x46eaf4dc, EBP=0x00000000, ESI=0x45cedc90, EDI=0x00000000
EIP=0x46bce470, EFLAGS=0x00010216

Top of Stack: (sp=0x46eaf4dc)
0x46eaf4dc: 46eaf4f4 00001000 00000000 00000001
0x46eaf4ec: 45c63df0 0010000f 46c968ca 46bc558b
0x46eaf4fc: 00000000 00000000 45c63df0 46bc566a
0x46eaf50c: 00000000 45c63df0 00000001 46bc576e
0x46eaf51c: 45c63df0 46bc1d90 45c1e288 00000000
0x46eaf52c: 46bc83fa 00000001 46ca6104 00000000
0x46eaf53c: 45c1e288 46bc98f2 46ca60fc 46bc9aeb
0x46eaf54c: 46ca60fc 46c55e99 00000000 c69d455a

Instructions: (pc=0x46bce470)
0x46bce450: d8 53 1b c0 57 8b be 10 a0 00 00 25 00 f0 ff ff
0x46bce460: 05 00 20 00 00 50 c1 e2 05 8d 44 24 14 50 8b da
0x46bce470: 8b 17 53 c1 e1 05 51 8b 4a 2c 57 ff d1 33 ff 3b
0x46bce480: c7 0f 8c 8f 00 00 00 8b 56 04 8b 4c 24 10 c1 e2

Register to memory mapping:

EAX=0x46eaf4f4 is pointing into the stack for thread: 0x45c63400
EBX=0x000000c0 is an unknown value
ECX=0x0000007e is an unknown value
EDX=0x000000c0 is an unknown value
ESP=0x46eaf4dc is pointing into the stack for thread: 0x45c63400
EBP=0x00000000 is an unknown value
ESI=0x45cedc90 is an unknown value
EDI=0x00000000 is an unknown value

Что за ошибка io.netty.channel?

Обычно данная ошибка возникает в ситуации, когда ПК видит какое-либо устройство по предполагаемому адресу сервера, но не сам сервер Minecraft. Происходит попытка подключения на протяжении выделенного отрезка времени, которая оканчивается неудачей (Connection timed out). После этого ПК прекращает попытки подключения к серверу, а пользователь получает ошибку io.netty.channel.abstractchannel$annotatedconnectexception.

Причины для возникновения дисфункции могут быть следующими:

  • Случайный сбой на серверах Майнкрафт;
  • Антивирус или брандмауэр блокирует подключение к игровому серверу;
  • ПК некорректно работает с серверами DNS;
  • Неверно указан игровой порт (необходим порт 25565 в настройках сервера);
  • Игровой сервер работает нестабильно;
  • Сетевое подключение пользователя перегружено (к примеру, параллельно работает торрент-клиент);
  • В игру установлен некорректный мод;
  • Наблюдаются проблемы в работе роутера;
  • Используется некорректная версия игры.

Давайте разберёмся, как можно исправить ошибку io.netty.channel.abstractchannel$annotatedconnectexception на вашем ПК.

Способ 1. Проверьте работоспособность игрового сервера


Проверьте работоспособность игрового сервера

Способ 2. Временно отключите антивирус и брандмауэр

Также рекомендуем временно отключить антивирус и брандмауэр на вашем ПК. Их работа по блокировке интернет-подключения становится частой причиной ошибки io.netty.channel.abstractchannel$annotatedconnectexception.

Если ошибка после этого перестанет появляться, создайте исключения в брандмауэре Виндовс для подключения к серверам Minecraft. Пользователям помогло создания соответствующего правила-исключения для файла 1.12.jar и (или) 1.13.jar .


Временно отключите ваш антивирус и файервол

Способ 3. Измените настройки DNS

Запустите командную строку от имени администратора (Win+R – cmd), и в ней наберите:

После этого попробуйте запустить игру. Если это не поможет, тогда будет необходимо изменить настройки серверов ДНС на публичные от Гугл. Выполните следующее:


Используйте указанные настройки

Нажмите внизу на ОК, и перезагрузите вашу машину. Попробуйте вновь подключиться к нужному серверу Minecraft.

Способ 4. Перезагрузите ваш роутер

В некоторых случаях некорректная работа пользовательского роутера становилась причиной рассматриваемой дисфункции. Устранить ошибку io.netty.channel.abstractchannel$annotatedconnectexception. Поможет перезагрузка вашего роутера. Попробуйте также использовать альтернативный роутер, и понаблюдайте, поможет ли это решить возникшую проблему.

Способ 5. Используйте статистический IP адрес

Если ваш провайдер предоставляет возможность получения статистических IP адресов, постарайтесь получить такой адрес и используйте его для игр Minecraft.

Скачайте Minecraft с другого источника

В некоторых случаях ваша версия Minecraft может работать нестабильно. Это может быть вызвано установкой дополнительных модов или некорректной версией самой игры. Удалите игру с PC стандартным образом, а затем попробуйте поискать стабильную версию Minecraft на других ресурсах. Установите игру (без модов), и попробуйте подключиться к нужному серверу.

В общем разобрался с этой я проблемой, был конфликтный мод и криво установленный форж. Как только я все наладил появилась необходимость все снести нафиг и поставить ядро caildron так как нужны и плагины и моды.

Сервер без модов запускается на раз и два а вот как только втюхаешь моды то выдает ошибку в конце,

pw.mods.fml.common.launcher.FMLServerTweaker

[00:03:12] [main/INFO]: Using primary tweak class name cpw.mods.fml.common.launcher.FMLServerTweaker

[00:03:12] [main/INFO]: Calling tweak class cpw.mods.fml.common.launcher.FMLServerTweaker

[00:03:12] [main/INFO]: Forge Mod Loader version 7.10.114.1388 for Minecraft 1.7.10 loading

[00:03:13] [main/INFO]: Java is Java HotSpot 64-Bit Server VM, version 1.8.0_121, running on Windows 10:amd64:10.0, installed at C:Program FilesJavajre1.8.0_121

[00:03:13] [main/INFO]: [HOOKLIB]  Obfuscated: true

[00:03:13] [main/WARN]: The following coremods do not have a @MCVersion annotation. They may cause problems if this is not the correct version of Minecraft for them.

[00:03:13] [main/WARN]: Missing @MCVersion: mods.battlegear2.coremod.BattlegearLoadingPlugin  mixac1.dangerrpg.hook.RPGHookLoader  

[00:03:13] [main/INFO]: Loading tweak class name cpw.mods.fml.common.launcher.FMLInjectionAndSortingTweaker

[00:03:13] [main/INFO]: Loading tweak class name cpw.mods.fml.common.launcher.FMLDeobfTweaker

[00:03:13] [main/INFO]: Calling tweak class cpw.mods.fml.common.launcher.FMLInjectionAndSortingTweaker

[00:03:13] [main/INFO]: Calling tweak class cpw.mods.fml.common.launcher.FMLInjectionAndSortingTweaker

[00:03:13] [main/INFO]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper

[00:03:15] [main/INFO]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper

[00:03:15] [main/INFO]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper

[00:03:15] [main/INFO]: [gloomyfolken.hooklib.asm.HookLogger$SystemOutLogger:debug:17]: [DEBUG] Parsing hooks contatiner gloomyfolken.hooklib.minecraft.SecondaryTransformerHook

[00:03:15] [main/INFO]: Calling tweak class cpw.mods.fml.common.launcher.FMLDeobfTweaker

[00:03:16] [main/INFO]: [gloomyfolken.hooklib.asm.HookLogger$SystemOutLogger:debug:17]: [DEBUG] Injecting hooks into class cpw.mods.fml.common.Loader

[00:03:16] [main/INFO]: [gloomyfolken.hooklib.asm.HookLogger$SystemOutLogger:debug:17]: [DEBUG] Successfully injected 1 hook to cpw.mods.fml.common.Loader

[00:03:16] [main/INFO]: [gloomyfolken.hooklib.asm.HookLogger$SystemOutLogger:debug:17]: [DEBUG] Methods dictionary loaded in 4 ms

[00:03:16] [main/INFO]: Calling tweak class cpw.mods.fml.relauncher.CoreModManager$FMLPluginWrapper

[00:03:20] [main/INFO]: Loading tweak class name cpw.mods.fml.common.launcher.TerminalTweaker

[00:03:20] [main/INFO]: Calling tweak class cpw.mods.fml.common.launcher.TerminalTweaker

[00:03:21] [main/INFO]: [gloomyfolken.hooklib.asm.HookLogger$SystemOutLogger:debug:17]: [DEBUG] Injecting hooks into class net.minecraft.entity.player.EntityPlayer

[00:03:21] [main/INFO]: [gloomyfolken.hooklib.asm.HookLogger$SystemOutLogger:debug:17]: [DEBUG] Successfully injected 3 hooks to net.minecraft.entity.player.EntityPlayer

[00:03:21] [main/INFO]: [gloomyfolken.hooklib.asm.HookLogger$SystemOutLogger:warning:22]: [WARNING] Can not found target method of hook AsmHook: net.minecraft.entity.player.EntityPlayer#getItemIcon(Lnet/minecraft/item/ItemStack;I)Lnet/minecraft/util/IIcon; -> mixac1.dangerrpg.hook.HookItemBow#getItemIcon(Lnet/minecraft/entity/player/EntityPlayer;Lnet/minecraft/item/ItemStack;ILnet/minecraft/util/IIcon;)Lnet/minecraft/util/IIcon;, ReturnCondition=ALWAYS, ReturnValue=HOOK_RETURN_VALUE, InjectorFactory: gloomyfolken.hooklib.asm.HookInjectorFactory$MethodExit

[00:03:21] [main/INFO]: M&B — Patching Class EntityPlayer (yz)

[00:03:21] [main/INFO]: Adding new fields to EntityPlayer

[00:03:21] [main/INFO]: Patching constructor in EntityPlayer

[00:03:21] [main/INFO]: Patching method onUpdate in EntityPlayer

[00:03:21] [main/INFO]: Patching method onItemUseFinish in EntityPlayer

[00:03:21] [main/INFO]: Patching method interactWith in EntityPlayer

[00:03:21] [main/INFO]: Patching method setCurrentItemOrArmor in EntityPlayer

[00:03:21] [main/INFO]: Creating new methods in EntityPlayer

[00:03:21] [main/INFO]: M&B — Patching Class EntityPlayer done

[00:03:21] [main/INFO]: [gloomyfolken.hooklib.asm.HookLogger$SystemOutLogger:debug:17]: [DEBUG] Injecting hooks into class net.minecraft.entity.EntityLivingBase

[00:03:21] [main/INFO]: [gloomyfolken.hooklib.asm.HookLogger$SystemOutLogger:debug:17]: [DEBUG] Successfully injected 1 hook to net.minecraft.entity.EntityLivingBase

[00:03:21] [main/INFO]: [gloomyfolken.hooklib.asm.HookLogger$SystemOutLogger:debug:17]: [DEBUG] Injecting hooks into class net.minecraft.entity.Entity

[00:03:21] [main/INFO]: [gloomyfolken.hooklib.asm.HookLogger$SystemOutLogger:debug:17]: [DEBUG] Successfully injected 1 hook to net.minecraft.entity.Entity

[00:03:21] [main/INFO]: Launching wrapped minecraft {net.minecraft.server.MinecraftServer}

[00:03:21] [main/INFO]: [gloomyfolken.hooklib.asm.HookLogger$SystemOutLogger:debug:17]: [DEBUG] Injecting hooks into class net.minecraft.item.Item

[00:03:21] [main/INFO]: [gloomyfolken.hooklib.asm.HookLogger$SystemOutLogger:debug:17]: [DEBUG] Successfully injected 4 hooks to net.minecraft.item.Item

[00:03:22] [main/INFO]: [gloomyfolken.hooklib.asm.HookLogger$SystemOutLogger:debug:17]: [DEBUG] Injecting hooks into class net.minecraft.entity.monster.EntityIronGolem

[00:03:22] [main/INFO]: [gloomyfolken.hooklib.asm.HookLogger$SystemOutLogger:debug:17]: [DEBUG] Successfully injected 1 hook to net.minecraft.entity.monster.EntityIronGolem

[00:03:22] [main/INFO]: [gloomyfolken.hooklib.asm.HookLogger$SystemOutLogger:debug:17]: [DEBUG] Injecting hooks into class net.minecraft.item.ItemBow

[00:03:22] [main/INFO]: [gloomyfolken.hooklib.asm.HookLogger$SystemOutLogger:debug:17]: [DEBUG] Successfully injected 1 hook to net.minecraft.item.ItemBow

[00:03:22] [main/INFO]: [gloomyfolken.hooklib.asm.HookLogger$SystemOutLogger:debug:17]: [DEBUG] Injecting hooks into class net.minecraft.entity.SharedMonsterAttributes

[00:03:22] [main/INFO]: [gloomyfolken.hooklib.asm.HookLogger$SystemOutLogger:debug:17]: [DEBUG] Successfully injected 1 hook to net.minecraft.entity.SharedMonsterAttributes

[00:03:22] [main/INFO]: [gloomyfolken.hooklib.asm.HookLogger$SystemOutLogger:debug:17]: [DEBUG] Injecting hooks into class net.minecraft.item.ItemStack

[00:03:22] [main/INFO]: [gloomyfolken.hooklib.asm.HookLogger$SystemOutLogger:debug:17]: [DEBUG] Successfully injected 2 hooks to net.minecraft.item.ItemStack

[00:03:22] [main/INFO]: M&B — Patching Class ItemStack (add)

[00:03:22] [main/INFO]: M&B — Patching Class ItemStack done

[00:03:23] [main/INFO]: [gloomyfolken.hooklib.asm.HookLogger$SystemOutLogger:debug:17]: [DEBUG] Injecting hooks into class net.minecraft.entity.projectile.EntityLargeFireball

[00:03:23] [main/INFO]: [gloomyfolken.hooklib.asm.HookLogger$SystemOutLogger:debug:17]: [DEBUG] Successfully injected 1 hook to net.minecraft.entity.projectile.EntityLargeFireball

[00:03:23] [main/INFO]: [gloomyfolken.hooklib.asm.HookLogger$SystemOutLogger:debug:17]: [DEBUG] Injecting hooks into class net.minecraft.entity.projectile.EntitySmallFireball

[00:03:23] [main/INFO]: [gloomyfolken.hooklib.asm.HookLogger$SystemOutLogger:debug:17]: [DEBUG] Successfully injected 1 hook to net.minecraft.entity.projectile.EntitySmallFireball

[00:03:23] [main/INFO]: [gloomyfolken.hooklib.asm.HookLogger$SystemOutLogger:debug:17]: [DEBUG] Injecting hooks into class net.minecraft.entity.projectile.EntityWitherSkull

[00:03:23] [main/INFO]: [gloomyfolken.hooklib.asm.HookLogger$SystemOutLogger:debug:17]: [DEBUG] Successfully injected 1 hook to net.minecraft.entity.projectile.EntityWitherSkull

[00:03:23] [main/INFO]: [gloomyfolken.hooklib.asm.HookLogger$SystemOutLogger:debug:17]: [DEBUG] Injecting hooks into class net.minecraft.entity.monster.EntitySkeleton

[00:03:23] [main/INFO]: [gloomyfolken.hooklib.asm.HookLogger$SystemOutLogger:debug:17]: [DEBUG] Successfully injected 1 hook to net.minecraft.entity.monster.EntitySkeleton

[00:03:23] [main/INFO]: [gloomyfolken.hooklib.asm.HookLogger$SystemOutLogger:debug:17]: [DEBUG] Injecting hooks into class net.minecraft.entity.monster.EntitySlime

[00:03:23] [main/INFO]: [gloomyfolken.hooklib.asm.HookLogger$SystemOutLogger:debug:17]: [DEBUG] Successfully injected 1 hook to net.minecraft.entity.monster.EntitySlime

[00:03:23] [main/INFO]: [gloomyfolken.hooklib.asm.HookLogger$SystemOutLogger:debug:17]: [DEBUG] Injecting hooks into class net.minecraft.entity.boss.EntityDragon

[00:03:23] [main/INFO]: [gloomyfolken.hooklib.asm.HookLogger$SystemOutLogger:debug:17]: [DEBUG] Successfully injected 1 hook to net.minecraft.entity.boss.EntityDragon

[00:03:23] [main/INFO]: [gloomyfolken.hooklib.asm.HookLogger$SystemOutLogger:debug:17]: [DEBUG] Injecting hooks into class net.minecraft.entity.passive.EntityWolf

[00:03:23] [main/INFO]: [gloomyfolken.hooklib.asm.HookLogger$SystemOutLogger:debug:17]: [DEBUG] Successfully injected 1 hook to net.minecraft.entity.passive.EntityWolf

[00:03:25] [server thread/INFO]: Starting minecraft server version 1.7.10

[00:03:25] [server thread/INFO]: Attempting early MinecraftForge initialization

[00:03:25] [server thread/INFO]: MinecraftForge v10.13.3.1388 Initialized

[00:03:25] [server thread/INFO]: Replaced 183 ore recipies

[00:03:25] [server thread/INFO]: Preloading CrashReport classes

[00:03:25] [server thread/INFO]: net.minecraft.world.World$1

[00:03:25] [server thread/INFO]: net.minecraft.world.World$2

[00:03:25] [server thread/INFO]: net.minecraft.world.World$3

[00:03:25] [server thread/INFO]: net.minecraft.world.World$4

[00:03:25] [server thread/INFO]: net.minecraft.world.chunk.Chunk$1

[00:03:25] [server thread/INFO]: net.minecraft.crash.CrashReportCategory$1

[00:03:25] [server thread/INFO]: net.minecraft.crash.CrashReportCategory$2

[00:03:25] [server thread/INFO]: net.minecraft.crash.CrashReportCategory$3

[00:03:25] [server thread/INFO]: net.minecraft.entity.Entity$1

[00:03:25] [server thread/INFO]: net.minecraft.entity.Entity$2

[00:03:25] [server thread/INFO]: net.minecraft.entity.EntityTracker$1

[00:03:25] [server thread/INFO]: net.minecraft.world.gen.layer.GenLayer$1

[00:03:25] [server thread/INFO]: net.minecraft.world.gen.layer.GenLayer$2

[00:03:25] [server thread/INFO]: net.minecraft.entity.player.InventoryPlayer$1

[00:03:25] [server thread/INFO]: net.minecraft.world.gen.structure.MapGenStructure$1

[00:03:25] [server thread/INFO]: net.minecraft.world.gen.structure.MapGenStructure$2

[00:03:25] [server thread/INFO]: net.minecraft.world.gen.structure.MapGenStructure$3

[00:03:25] [server thread/INFO]: net.minecraft.server.MinecraftServer$3

[00:03:25] [server thread/INFO]: net.minecraft.server.MinecraftServer$4

[00:03:25] [server thread/INFO]: net.minecraft.server.MinecraftServer$5

[00:03:25] [server thread/INFO]: net.minecraft.nbt.NBTTagCompound$1

[00:03:25] [server thread/INFO]: net.minecraft.nbt.NBTTagCompound$2

[00:03:25] [server thread/INFO]: net.minecraft.network.NetHandlerPlayServer$2

[00:03:25] [server thread/INFO]: net.minecraft.network.NetworkSystem$3

[00:03:25] [server thread/INFO]: net.minecraft.tileentity.TileEntity$1

[00:03:25] [server thread/INFO]: net.minecraft.tileentity.TileEntity$2

[00:03:25] [server thread/INFO]: net.minecraft.tileentity.TileEntity$3

[00:03:25] [server thread/INFO]: net.minecraft.world.storage.WorldInfo$1

[00:03:25] [server thread/INFO]: net.minecraft.world.storage.WorldInfo$2

[00:03:25] [server thread/INFO]: net.minecraft.world.storage.WorldInfo$3

[00:03:25] [server thread/INFO]: net.minecraft.world.storage.WorldInfo$4

[00:03:25] [server thread/INFO]: net.minecraft.world.storage.WorldInfo$5

[00:03:25] [server thread/INFO]: net.minecraft.world.storage.WorldInfo$6

[00:03:25] [server thread/INFO]: net.minecraft.world.storage.WorldInfo$7

[00:03:25] [server thread/INFO]: net.minecraft.world.storage.WorldInfo$8

[00:03:25] [server thread/INFO]: net.minecraft.world.storage.WorldInfo$9

[00:03:25] [server thread/INFO]: net.minecraft.server.dedicated.DedicatedServer$3

[00:03:25] [server thread/INFO]: net.minecraft.server.dedicated.DedicatedServer$4

[00:03:25] [server thread/INFO]: Completed early MinecraftForge initialization

[00:03:26] [server thread/INFO]: Searching C:UsersднсDesktopНовая папка (3)mods for mods

[00:03:27] [server thread/INFO]: Forge Mod Loader has identified 7 mods to load

[00:03:27] [server thread/ERROR]: The mod BiomesOPlenty (Biomes O’ Plenty) requires mod versions [Forge@[10.13.4.1566,)] to be available

[00:03:27] [server thread/ERROR]: Encountered an unexpected exception

cpw.mods.fml.common.MissingModsException: 

Missing Mods:

Forge : [10.13.4.1566,)

at cpw.mods.fml.common.Loader.sortModList(Loader.java:244) ~[Loader.class:git-Cauldron-Reloaded-1.7.10-1.1388.1.0]

at cpw.mods.fml.common.Loader.loadMods(Loader.java:472) ~[Loader.class:git-Cauldron-Reloaded-1.7.10-1.1388.1.0]

at cpw.mods.fml.server.FMLServerHandler.beginServerLoading(FMLServerHandler.java:87) ~[FMLServerHandler.class:git-Cauldron-Reloaded-1.7.10-1.1388.1.0]

at cpw.mods.fml.common.FMLCommonHandler.onServerStart(FMLCommonHandler.java:318) ~[FMLCommonHandler.class:git-Cauldron-Reloaded-1.7.10-1.1388.1.0]

at net.minecraft.server.dedicated.DedicatedServer.func_71197_b(DedicatedServer.java:176) ~[lt.class:?]

at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:620) [MinecraftServer.class:?]

at java.lang.Thread.run(Unknown Source) [?:1.8.0_121]

[00:03:27] [server thread/ERROR]: This crash report has been saved to: C:UsersднсDesktopНовая папка (3).crash-reportscrash-2017-03-09_00.03.27-server.txt

[00:03:27] [server thread/WARN]: Can’t revert to frozen GameData state without freezing first.

[00:03:27] [server thread/INFO]: Applying holder lookups

[00:03:27] [server thread/INFO]: Holder lookups applied

[00:03:27] [server thread/INFO]: The state engine was in incorrect state CONSTRUCTING and forced into state SERVER_STOPPED. Errors may have been discarded.

Нигде не могу найти однозначный ответ. В общем ошибка где  то в ядре, как только я поставил сервер на форжу, моды работали и с ними можно было играть нормально. Провожу те же манипуляции уже на cauldrone и начинает материть.

  1. 09.11.2018, 20:32

    #1

    проблема со входом на сервер

    1. bakugan4747
    2.при входе на сервер пишет: Internal Exception : io.netty.handler.codec.encoderexception: java.land.outofmemoryerror
    3.http://priscree.ru/img/90965de303a284.jpg
    http://priscree.ru/img/909657a8d64276.jpg


  2. 10.11.2018, 01:53

    #2

    Попробуй перезайти,мне помогало,если не поможет,проверь соединение с интернетом


  3. 10.11.2018, 16:29

    #3


  4. 10.11.2018, 16:39

    #4

    Оперативной памяти сколько выделено?И сколько всего на компьютере?Также какой сервер?


  5. 10.11.2018, 17:26

    #5

    в основе 3 гига оперативы, 1.5 выделено сервер pixelmon


  6. 10.11.2018, 18:56

    #6

    Выдели 1024 мб оперативы в настройках лаунчера,Java ругается на нехватку памяти,но так как у вас 3 гб всего,нужно учитывать память для системы windows

    Последний раз редактировалось danil777963; 10.11.2018 в 22:06.


Hey guys,

I have a huge problem on my server right now. Everytime someone joins one of my servers they get a message that says:

Internal Exception: io.netty.handler.codec.DecoderException: java.lang.IndexOutOfBoundsException: readerIndex(9) +length(1) exceeds writerIndex (9_: UnpooledHeapByteBuf(ridx: 9, widx, cap: 9)

This error also occurs on my factions server. They can join the server perfectly but once they start running, after an extended period of time they also get that message. I do not understand what is wrong. We are fine on our storage. 7400/20000. Cpu is fine. But this error is bad.

On the console it says when the user is kicked:

13.06 15:26:10 [Disconnect] User DjNegroBlack has disconnected, reason: Disconnected
13.06 15:26:10 [Server] ERROR io.netty.handler.codec.EncoderException: String too big (was 32789 bytes encoded, max 32767)
13.06 15:26:10 [Server] ERROR io.netty.handler.codec.EncoderException: String too big (was 32789 bytes encoded, max 32767)
13.06 15:26:10 [Server] ERROR io.netty.handler.codec.EncoderException: String too big (was 32789 bytes encoded, max 32767)
13.06 15:26:10 [Server] ERROR io.netty.handler.codec.EncoderException: String too big (was 32789 bytes encoded, max 32767)
13.06 15:26:10 [Server] ERROR io.netty.handler.codec.EncoderException: String too big (was 32789 bytes encoded, max 32767)
13.06 15:26:10 [Server] ERROR io.netty.handler.codec.EncoderException: String too big (was 32789 bytes encoded, max 32767)
13.06 15:26:10 [Server] ERROR io.netty.handler.codec.EncoderException: String too big (was 32789 bytes encoded, max 32767)
13.06 15:26:10 [Server] ERROR io.netty.handler.codec.EncoderException: String too big (was 32789 bytes encoded, max 32767)
13.06 15:26:10 [Server] ERROR io.netty.handler.codec.EncoderException: String too big (was 32789 bytes encoded, max 32767)
13.06 15:26:10 [Server] ERROR io.netty.handler.codec.EncoderException: String too big (was 32789 bytes encoded, max 32767)
13.06 15:26:10 [Server] ERROR io.netty.handler.codec.EncoderException: String too big (was 32789 bytes encoded, max 32767)
13.06 15:26:10 [Server] ERROR io.netty.handler.codec.EncoderException: String too big (was 32789 bytes encoded, max 32767)
13.06 15:26:10 [Server] ERROR io.netty.handler.codec.EncoderException: String too big (was 32789 bytes encoded, max 32767)
13.06 15:26:10 [Server] ERROR io.netty.handler.codec.EncoderException: String too big (was 32789 bytes encoded, max 32767)
13.06 15:26:10 [Server] ERROR io.netty.handler.codec.EncoderException: String too big (was 32789 bytes encoded, max 32767)
13.06 15:26:10 [Server] ERROR io.netty.handler.codec.EncoderException: String too big (was 32789 bytes encoded, max 32767)
13.06 15:26:10 [Server] ERROR io.netty.handler.codec.EncoderException: String too big (was 32789 bytes encoded, max 32767)
13.06 15:26:10 [Server] ERROR io.netty.handler.codec.EncoderException: String too big (was 32789 bytes encoded, max 32767)
13.06 15:26:10 [Server] ERROR io.netty.handler.codec.EncoderException: String too big (was 32789 bytes encoded, max 32767)

If you would like to see the problems yourself the server ip is mc.raidpvp.us.

Thank you for the help,

IDCHAHA

Как исправить внутреннюю ошибку исключения в Minecraft (io.netty.handler или Java.IO.IOException)

Хотя Minecraft не является одной из самых графически интенсивных игр, она все же может вызвать проблемы для игроки; особенно те, кто пытается играть в многопользовательскую игру Minecraft на серверах Minecraft.

Тем, кто сталкивается с ошибкой с внутренним исключением при попытке подключения к серверу Minecraft, может быть сложно исправить ее. Это может быть вызвано несколькими разными причинами.

В этом руководстве рассматриваются лучшие способы, с помощью которых игроки могут исправить ошибку внутреннего исключения при попытке играть в игру.

Как исправить внутреннее исключение Minecraft (io.netty.handler) (Java.IO.IOException) ошибки?

Проще говоря, проблема с подключением вызывает эту ошибку. Это может быть связано с несколькими вещами. Игроки могут попробовать каждое из перечисленных ниже стандартных решений, чтобы узнать, удастся ли решить проблему.

Сначала проверьте, нет ли ошибки на сервере, к которому вы пытаетесь присоединиться

Игроки должны сначала проверить, исходит ли проблема с подключением, вызывающая сообщение об ошибке внутреннего исключения, с сервера или с их стороны.

Если ошибка возникла на стороне сервера, игроки могут быть уверены, что с их копией Minecraft все в порядке. или их настройки ПК. Это просто проблема с самим сервером.

Лучший способ проверить, есть ли ошибка на сервере, — это подключиться к этому тестовому серверу с IP-адресом: test.prisonfun.comЕсли подключение к этому серверу прошло успешно, проблем с игровым клиентом или настройками ПК нет. Этот конкретный сервер поддерживает все версии Minecraft и всегда обновляется, поэтому это лучшее место для проверки любых потенциальных проблем с подключением.

Если подключение к этому серверу не удалось, значит проблема на стороне игрока. , а не сервер. Игроки могут попробовать предложенные ниже решения, чтобы попытаться исправить их.

Обновить Java

Minecraft — это приложение Java, и для его работы требуется Java. Игроки должны убедиться, что у них установлена ​​последняя официальная версия Java:

  1. Перейдите на официальную страницу загрузки Java, которую можно найти здесь
  2. Загрузите последнюю доступную версию Java
  3. Завершите установку
  4. Повторите попытку в Minecraft, чтобы присоединиться к IP-адресу сервера: test.prisonfun.com

Отключить брандмауэр + антивирус + VPN

Многопользовательская игра Minecraft чувствительна к определенным правилам брандмауэра, настройкам антивируса и VPN.

Игроки могут попробовать отключить все три из них и повторить попытку подключения:

Отключить брандмауэр

  1. Нажмите клавишу Windows + R (или введите «Выполнить» в меню «Пуск»).
  2. Введите «control» в меню «Выполнить» и нажмите Enter.
  3. Нажмите «Система и безопасность».
  4. Нажмите «Брандмауэр Windows»
  5. Слева нажмите «Включить или отключить брандмауэр Защитника Windows»
  6. Отключить брандмауэр как для общедоступной, так и для частной сети
  7. Повторите попытку на MC, чтобы присоединиться к IP-адресу сервера: test.prisonfun.com

Отключить антивирус и VPN не так просто, как отключение брандмауэра. Это зависит от используемого антивируса и VPN.

Отключите антивирус

Если игроки используют определенный тип антивируса, например Norton, McAffee или Avast. , они должны быть полностью отключены в своих панелях управления. После этого игроки могут повторить попытку подключения к IP-адресу сервера: test.prisonfun.com

Отключить VPN

Если игроки подключены к какому-либо VPN, его следует выключить и отключить. После этого игроки могут повторить попытку подключения к IP-адресу сервера: test.prisonfun.com

Изменить адрес DNS-сервера

DNS-сервер может повлиять на сбой соединения. Важно убедиться, что она актуальна и точна.

  1. Нажмите клавишу Windows + R (или введите «выполнить» в меню «Пуск»).
  2. Введите «control » в меню «Выполнить» и нажмите Enter
  3. Перейдите на вкладку «Сеть и Интернет».
  4. Нажмите «Центр управления сетями и общим доступом».
  5. Выберите подключение (обычно «Ethernet» или «Wi-Fi»).
  6. Нажмите «Свойства».
  7. Нажмите «Протокол Интернета версии 4» (IPv4).
  8. Выберите «Использовать следующие адреса DNS-серверов».
  9. Для основного DNS-сервера , используйте 8.8.8.8
  10. Для альтернативного DNS-сервера используйте 8.8.4.4
  11. Нажмите «ОК»
  12. Повторите попытку в Minecraft, чтобы присоединиться к IP-адресу сервера: test.prisonfun.com

Пользователи могут посмотреть это видео ниже о том, как изменить DNS-сервер (это работает для Windows 10 и 11).

Повторно загрузите новую установку Minecraft

Возможно, что-то не так с установкой Minecraft. Игроки должны попытаться повторно загрузить свежую копию без включенных модификаций.

  1. Откройте официальную программу запуска Minecraft (загрузите ее здесь, если у вас ее нет)
  2. В главном меню лаунчера нажмите кнопку «Установки» (она должна быть вверху экрана на панели навигации)
  3. Нажмите «Новая установка»
  4. Выберите версию Minecraft которую вы хотите использовать (рекомендуется последняя версия).
  5. Нажмите зеленую кнопку «Создать» в правом нижнем углу меню установки.
  6. Убедитесь, что только что созданная версия выбрана на главном меню запуска
  7. Нажмите большую зеленую кнопку «Воспроизвести» в главном меню запуска
  8. Повторите попытку в Minecraft, чтобы присоединиться к IP-адресу сервера: test.prisonfun.com

Установите Minecraft в новый каталог

При повторной загрузке новой установки Minecraft не удается, игроки могут попробовать установить новый каталог Minecraft вообще.

  1. Откройте официальную программу запуска Minecraft (загрузите ее здесь, если у вас ее нет)
  2. На странице главное меню лаунчера, нажмите кнопку «Установки» (она должна быть вверху экрана на панели навигации)
  3. Нажмите «Новая установка»
  4. Выберите версию игры, которую вы хотите использовать (рекомендуется последняя версия).
  5. Для параметра «Каталог игр» нажмите «Обзор» и выберите любое место, куда вы хотите установить игру на своем ПК, если вы не знаете, где, просто нажмите «Рабочий стол» вверху.
  6. Нажмите «ОК».
  7. Нажмите зеленую кнопку «Создать» в правом нижнем углу, чтобы создать новый профиль установки
  8. li>
  9. Перед запуском игры убедитесь, что только что созданный установочный профиль выбран в главном меню программы запуска.
  10. Нажмите большую зеленую кнопку «Играть» в главном меню запуска.
  11. Повторите попытку на MC, чтобы присоединиться к IP-адресу сервера: test.prisonfun.com

Попробуйте VPN или другой Wi-Fi сеть

Если до сих пор ничего не сработало, возможно, проблема с локальной сетью. Игроки могут проверить, так ли это, подключившись к другой сети Wi-Fi или просто через бесплатный VPN, загруженный из Интернета.

Игроки могут свободно использовать свой VPN или попробовать тот, который показан в видеоруководстве ниже.< /p>

После VPN подключен к нему, игроки могут еще раз попытаться подключиться к IP-адресу тестового сервера: test.prisonfun.com

Enable Java Native Sandbox

Включение параметра Java Native Sandbox помогло некоторым пользователям устранить проблемы, связанные с io.netty.handler и Java.IO.IOException.

  1. Нажмите клавишу Windows (или щелкните значок меню «Пуск»).
  2. Введите Настроить Java и нажмите Enter.
  3. Перейдите на вкладку «Дополнительно», прокрутите вниз до «Дополнительных параметров безопасности» и включите параметр «Включить ограниченная среда операционной системы (собственная песочница).
  4. Нажмите «Применить», затем нажмите «ОК».
  5. Перезагрузите компьютер. Это очень важно.
  6. Повторите попытку в Minecraft, чтобы присоединиться к IP-адресу сервера: test.prisonfun.com

Перезагрузить маршрутизатор

Иногда проблема с подключением может быть вызвана необходимостью перезагрузки локального маршрутизатора. Это происходит по разным техническим причинам, но перезапуск маршрутизатора может назначить новый IP-адрес и многое другое, что может помочь решить основную проблему.

  1. Отключите сетевой маршрутизатор
  2. Подождите. несколько минут (за это время перезагрузите компьютер)
  3. Подключите сетевой маршрутизатор
  4. Повторите попытку на MC, чтобы присоединиться к IP-адресу сервера: test.prisonfun.com< /ли>

    Убедитесь, что на ПК/в сети нет родительских или административных ограничений

    . Другая важная причина проблем с io.netty.handler и Java.IO.IOException связана с ограничениями, применяемыми программным обеспечением родительского контроля (например, , NetNanny, Norton Family, Qustodio и т. д.), а также сетевых администраторов.

    К сожалению, единственный способ исправить это – полностью отключить их, что зависит от используемого программного обеспечения.

    p> Если игроки знают, что к машине или сети применяются родительские или административные ограничения, это, безусловно, может быть основной причиной проблем.

    Также прочитайте статью, продолжение которой приведено ниже. Как исправить ошибку «время ожидания подключения истекло» в Minecraft Как исправить ошибку JNI в Java Edition при настройке сервера Minecraft Как исправить ошибку Minecraft GLFW 65542 (драйвер не поддерживает OpenGL) После полного отключения этих ограничений игроки могут еще раз попытаться подключиться к серверу по IP : test.prisonfun.com

Содержание

  1. Minecraft Forums
  2. HELP! I can’t connect to ANY servers! :((
  3. Тема: Уже более полу часа не заходит на сервер Classic
  4. Уже более полу часа не заходит на сервер Classic
  5. Io netty handler, Java IO IOException или внутреннее исключение в Minecraft: что делать
  6. что делать, когда в Minecraft отваливается подключение с ошибкой io netty handler или Java IO IOException
  7. перенастраиваем DNS

Minecraft Forums

HELP! I can’t connect to ANY servers! :((

I’m using minecraft 1.7.4. So far the only versions I can play is 1.7.4 and 1.7.9.

Btw, is there any good virus scanners that you can introduce?

  • Newly Spawned
  • Join Date: 4/19/2014
  • Posts: 1
  • Member Details

  • Out of the Water
  • Join Date: 4/7/2014
  • Posts: 7
  • Member Details

  • Out of the Water
  • Join Date: 4/7/2014
  • Posts: 7
  • Member Details

  • Out of the Water
  • Join Date: 4/18/2014
  • Posts: 3
  • Member Details

  • Coal Miner
  • Join Date: 10/18/2013
  • Posts: 109
  • Minecraft: zeldalover52
  • Xbox: NOPE
  • PSN: NOPE
  • Member Details

Notch just said creepers are ready to be able to live with humans!

WE’RE ALL GONNA DIE.

I told you you would be scared.

  • Out of the Water
  • Join Date: 6/10/2014
  • Posts: 2
  • Member Details

  • Tree Puncher
  • Join Date: 12/11/2011
  • Posts: 38
  • Minecraft: DragonZlayerX
  • Member Details

  • Out of the Water
  • Join Date: 6/10/2014
  • Posts: 2
  • Member Details

  • Out of the Water
  • Join Date: 12/15/2014
  • Posts: 8
  • Member Details

  • The Meaning of Life, the Universe, and Everything.
  • Join Date: 1/25/2014
  • Posts: 42
  • Member Details

So I was playing minecraft earlier today but when I tried to connect to multiplayer servers, it keep saying the following:

Internal Exception: io.netty.handler.codec.DecoderException: java.util.zip.ZipException: invalid bit length repeat

Internal Exception: io.netty.handler.codec.DecoderException: java.util.zip.ZipException: Bad packet id **********

Internal Exception: io.netty.handler.codec.DecoderException: java.io.IOException: Bad compressed data format

Failed to login: Invalid session (Try restarting your game)

Источник

Тема: Уже более полу часа не заходит на сервер Classic

Опции темы
Поиск по теме
Отображение

Уже более полу часа не заходит на сервер Classic

Перестало заходить на сервер Classic, при попытке залогиниться на сервере выдаёт следующуюю ошибку:
Internal Exception: io.netty.handler.codec.DecoderException: java.lang.IndexOutOfBoundsException: readerIndex(30) + length(1) exceeds writerIndex(30): PooledUsafeDirectByteBuf(ridx:30, widx:30, cap:30)
Помогите пожалуйста

Наверное тогда это у всех, просто ждать остаётся пока починят

так кто то же играет все равно, как то не повлияло на них

Давай джаву попробуем обновить или переустановить

Вы пробовали полностью перезаходить в игру? Там обновление вышло, должно скачаться и тогда пустит на сервер.

принудительно обновлял. не катит

Да, перезаход не помогает.

Напиши мне в дс — Marzia#4780 и скачай TeamViewer

киньте полный лог ошибки, а не тот огрызок из первого поста)

[ByteToMessageDecoder.class:2.8.1]
at io.netty.handler.codec.ByteToMessageDecoder.channe lRead(ByteToMessageDecoder.java:248)

[ByteToMessageDecoder.class:2.8.1]
at io.netty.channel.AbstractChannelHandlerContext.inv okeChannelRead(AbstractChannelHandlerContext.java: 362) [AbstractChannelHandlerContext.class:2.8.1]
at io.netty.channel.AbstractChannelHandlerContext.inv okeChannelRead(AbstractChannelHandlerContext.java: 348) [AbstractChannelHandlerContext.class:2.8.1]
at io.netty.channel.AbstractChannelHandlerContext.fir eChannelRead(AbstractChannelHandlerContext.java:34 0) [AbstractChannelHandlerContext.class:2.8.1]
at io.netty.handler.codec.ByteToMessageDecoder.fireCh annelRead(ByteToMessageDecoder.java:293) [ByteToMessageDecoder.class:2.8.1]
at io.netty.handler.codec.ByteToMessageDecoder.channe lRead(ByteToMessageDecoder.java:267) [ByteToMessageDecoder.class:2.8.1]
at io.netty.channel.AbstractChannelHandlerContext.inv okeChannelRead(AbstractChannelHandlerContext.java: 362) [AbstractChannelHandlerContext.class:2.8.1]
at io.netty.channel.AbstractChannelHandlerContext.inv okeChannelRead(AbstractChannelHandlerContext.java: 348) [AbstractChannelHandlerContext.class:2.8.1]
at io.netty.channel.AbstractChannelHandlerContext.fir eChannelRead(AbstractChannelHandlerContext.java:34 0) [AbstractChannelHandlerContext.class:2.8.1]
at io.netty.handler.codec.ByteToMessageDecoder.fireCh annelRead(ByteToMessageDecoder.java:293) [ByteToMessageDecoder.class:2.8.1]
at io.netty.handler.codec.ByteToMessageDecoder.fireCh annelRead(ByteToMessageDecoder.java:280) [ByteToMessageDecoder.class:2.8.1]
at io.netty.handler.codec.ByteToMessageDecoder.callDe code(ByteToMessageDecoder.java:396) [ByteToMessageDecoder.class:2.8.1]
at io.netty.handler.codec.ByteToMessageDecoder.channe lRead(ByteToMessageDecoder.java:248) [ByteToMessageDecoder.class:2.8.1]
at io.netty.channel.AbstractChannelHandlerContext.inv okeChannelRead(AbstractChannelHandlerContext.java: 362) [AbstractChannelHandlerContext.class:2.8.1]
at io.netty.channel.AbstractChannelHandlerContext.inv okeChannelRead(AbstractChannelHandlerContext.java: 348) [AbstractChannelHandlerContext.class:2.8.1]
at io.netty.channel.AbstractChannelHandlerContext.fir eChannelRead(AbstractChannelHandlerContext.java:34 0) [AbstractChannelHandlerContext.class:2.8.1]
at io.netty.handler.codec.MessageToMessageDecoder.cha nnelRead(MessageToMessageDecoder.java:102) [MessageToMessageDecoder.class:2.8.1]
at io.netty.channel.AbstractChannelHandlerContext.inv okeChannelRead(AbstractChannelHandlerContext.java: 362) [AbstractChannelHandlerContext.class:2.8.1]
at io.netty.channel.AbstractChannelHandlerContext.inv okeChannelRead(AbstractChannelHandlerContext.java: 348) [AbstractChannelHandlerContext.class:2.8.1]
at io.netty.channel.AbstractChannelHandlerContext.fir eChannelRead(AbstractChannelHandlerContext.java:34 0) [AbstractChannelHandlerContext.class:2.8.1]
at io.netty.handler.timeout.IdleStateHandler.channelR ead(IdleStateHandler.java:287) [IdleStateHandler.class:2.8.1]
at io.netty.channel.AbstractChannelHandlerContext.inv okeChannelRead(AbstractChannelHandlerContext.java: 362) [AbstractChannelHandlerContext.class:2.8.1]
at io.netty.channel.AbstractChannelHandlerContext.inv okeChannelRead(AbstractChannelHandlerContext.java: 348) [AbstractChannelHandlerContext.class:2.8.1]
at io.netty.channel.AbstractChannelHandlerContext.fir eChannelRead(AbstractChannelHandlerContext.java:34 0) [AbstractChannelHandlerContext.class:2.8.1]
at io.netty.channel.DefaultChannelPipeline$HeadContex t.channelRead(DefaultChannelPipeline.java:1334) [DefaultChannelPipeline$HeadContext.class:2.8.1]
at io.netty.channel.AbstractChannelHandlerContext.inv okeChannelRead(AbstractChannelHandlerContext.java: 362) [AbstractChannelHandlerContext.class:2.8.1]
at io.netty.channel.AbstractChannelHandlerContext.inv okeChannelRead(AbstractChannelHandlerContext.java: 348) [AbstractChannelHandlerContext.class:2.8.1]
at io.netty.channel.DefaultChannelPipeline.fireChanne lRead(DefaultChannelPipeline.java:926) [DefaultChannelPipeline.class:2.8.1]
at io.netty.channel.nio.AbstractNioByteChannel$NioByt eUnsafe.read(AbstractNioByteChannel.java:134) [AbstractNioByteChannel$NioByteUnsafe.class:2.8.1]
at io.netty.channel.nio.NioEventLoop.processSelectedK ey(NioEventLoop.java:624) [NioEventLoop.class:2.8.1]
at io.netty.channel.nio.NioEventLoop.processSelectedK eysOptimized(NioEventLoop.java:559) [NioEventLoop.class:2.8.1]
at io.netty.channel.nio.NioEventLoop.processSelectedK eys(NioEventLoop.java:476) [NioEventLoop.class:2.8.1]
at io.netty.channel.nio.NioEventLoop.run(NioEventLoop .java:438) [NioEventLoop.class:2.8.1]
at io.netty.util.concurrent.SingleThreadEventExecutor $5.run(SingleThreadEventExecutor.java:858) [SingleThreadEventExecutor$5.class:2.8.1]
at java.lang.Thread.run(Thread.java:745) [?:1.8.0_25]
Caused by: java.lang.IndexOutOfBoundsException: readerIndex(30) + length(1) exceeds writerIndex(30): PooledUnsafeDirectByteBuf(ridx: 30, widx: 30, cap: 30)
at io.netty.buffer.AbstractByteBuf.checkReadableBytes 0(AbstractByteBuf.java:1396)

[AbstractByteBuf.class:2.8.1]
at io.netty.buffer.AbstractByteBuf.readByte(AbstractB yteBuf.java:687)

[AbstractByteBuf.class:2.8.1]
at net.minecraft.network.PacketBuffer.readByte(Packet Buffer.java:864)

[gy.class:?]
at net.minecraft.network.PacketBuffer.func_150793_b(P acketBuffer.java:303)

[gy.class:?]
at net.minecraft.network.PacketBuffer.func_150791_c(P acketBuffer.java:361)

[gy.class:?]
at net.minecraft.network.datasync.DataSerializers$6.f unc_187159_a(DataSerializers.java:124)

[na$11.class:?]
at net.minecraft.network.datasync.DataSerializers$6.f unc_187159_a(DataSerializers.java:117)

[na$11.class:?]
at net.minecraft.network.datasync.EntityDataManager.f unc_187215_b(EntityDataManager.java:302)

[nb.class:?]
at net.minecraft.network.play.server.SPacketEntityMet adata.func_148837_a(SourceFile:31)

[kd.class:?]
at net.minecraft.network.NettyPacketDecoder.decode(So urceFile:40)

[gz.class:?]
at io.netty.handler.codec.ByteToMessageDecoder.callDe code(ByteToMessageDecoder.java:411)

[ByteToMessageDecoder.class:2.8.1]
. 35 more

Когда первый раз заходил игра ещё давала 1-2 минуты побегать. На второй уже не пускала)

Последний раз редактировалось youngjh999; 16.03.2020 в 11:43 .

Источник

Io netty handler, Java IO IOException или внутреннее исключение в Minecraft: что делать

Ошибка «внутреннее исключение» или Internal Exception с io netty handler либо Java IO IOException в Minecraft случаются по причине того, что игра теряет подключение к серверу.

А вот сбоить подключение, как известно, может по самым разным причинам. Следовательно, в каждом отдельном случае устраняется проблема тоже разными способами, притом вполне себе стандартными.

О них и расскажем. Итак.

что делать, когда в Minecraft отваливается подключение с ошибкой io netty handler или Java IO IOException

Значит, первым делом просто проверяем подключение (перезагружаем роутер, переподключаем комп к Wi-Fi заново, переподключаем его напрямую через кабель, перезагружаем, запускаем Minecraft от имени администратора, проверяем и отключаем родительский контроль и т.д.) далее действуем следующим порядком:

#1 — проверяем состояние сервера

… для того, чтобы определить где именно случился сбой подключения — на стороне сервера, или локально. А для того, чтобы оперативно проверить и текущее состояние сервера игры, и текущее состояние подключения со своей стороны, просто подключаемся к тестовому серверу с IP: test.prisonfun.com.

Если подключится получается без проблем, то с клиентом игры и с настройками компа все в порядке. Данный сервер поддерживает все версии Minecraft и обновляется регулярно, потому оптимально подходит для оперативного выявления любых потенциально возможных проблем с подключением.

В противном же случае, то есть, когда подключиться именно к этому серверу не получилось, то, вероятнее всего, сбой подключения случился на стороне пользователя. И надо его устранять. Потому идем дальше.

#2 — отключаем брандмауэр, антивирус и VPN

Мера это временная, но крайне необходимая в случае, когда нужно быстро определить и устранить причину ошибок io netty handler или Java IO IOException в Minecraft. Поэтому:

  • отключаем брандмауэр Windows:
    • жмем Win+R с клавиатуры, в строке «Выполнить» пишем control и жмем Enter;
    • в окне Панели управления кликаем «Система и безопасность» и далее — «Брандмауэр Windows«;
    • в следующем окне слева жмем «Включение и отключение брандмауэра Windows«;
    • отключаем брандмауэр для обоих типов сети — для домашней и рабочей и для общественной;
    • кликаем ОК.

После этого снова пробуем подключиться к IP: test.prisonfun.com. Если снова не получилось то:

  • отключаем антивирус — через панель управления программы;
  • отключаем VPN

И снова подключаемся тестовому IP: test.prisonfun.com.

Опять безрезультатно? Тогда..

#3 — обновляем Java

Minecraft без Java не работает (и не должен). Более того, во избежание проблем с игрой Java на компе желательно иметь в самой последней версии. Обновляется эта самая версия стандартно:

  • идем на официальную страницу загрузки Java — [ССЫЛКА];
  • качаем и устанавливаем самую свежую версию Java.

Попутно в случае с проблемкой «внутреннего исключения» (ошибка io.netty.handler и Java.IO.IOException) не лишним также будет включить функцию Java Native Sandbox, а для этого:

  • жмем «Пуск«, в строке поиска системы пишем java и в результатах выше кликаем «Configure Java«;
  • в открывшемся окне переходим во вкладку «Advanced«;
  • список параметров прокручиваем до раздела «Advanced security settings» и активируем опцию «Enable the operating system’s restricted environment (native sandbox)«;
  • жмем «Применить» и «ОК«.

После перерезагружаем комп (это важно!), запускаем Minecraft и подключаемся к IP: test.prisonfun.com. Снова никак?

перенастраиваем DNS

Процедура тоже стандартная:

  • жмем Win+R с клавиатуры, в строке «Выполнить» пишем control и жмем Enter;
  • в окне Панели управления кликаем «Сеть и Интернет» и далее — «Центр управления сетями и общим доступом«;
  • находим с списке сетей свое текущее подключение («Ethernet» или «WiFi») и кликаем ссылку «сетевое соединение«;
  • в следующем окне жмем кнопку «Свойства» и далее в окне свойств подключения:
    • двойным кликом кликаем по строке «Протокол интернета версии 4 (IPv4)» в компонентах;
    • в открывшемся окошке активируем опцию «Использовать следующие адреса DNS-серверов» и ниже
    • для «Предпочитаемый DNS-сервер» прописываем 8.8.8.8
    • для «Альтернативный DNS-сервер» прописываем 8.8.4.4
    • и жмем ОК.

Перезагружаем комп, запускаем Minecraft и пробуем подключиться к IP: test.prisonfun.com.

Если после перенастройки DNS (и всех предыдущих мер) устранить проблему не удалось, то, очень вероятно, что причина сбоя — в самой игре, а точнее в имеющейся сборке и/или в установленных модах. Поэтому

#4 — выполняем чистую переустановку Minecraft

То есть, качаем последнюю версию Minecraft с официального сайта и устанавливаем её безо всяких модов. Сделать нужно следующее:

  • открываем официальный лаунчер Minecraft (либо сначала качаем его и устанавливаем — [ССЫЛКА] — и затем открываем);
  • в главном меню открываем вкладку «Установки» (вверху) и жмем «Новая установка«;
  • выбираем версию Minecraft (разработчик рекомендует ставить самую последнюю) и жмем «Загрузить«;
  • далее проверяем, чтобы в меню лаунчера выбрана была именно нужная версия и жмем «Играть«;
  • после запуска Minecraft проверяем подключение через IP: test.prisonfun.com.

Ну а если игра снова выдает «внутреннее исключение» с io netty handler либо Java IO IOException (а такое тоже может быть), значит придется переустановить её в другое место. Для этого:

  • открываем официальный лаунчер Minecraft (ссылку см. выше);
  • в главном меню открываем вкладку «Установки» (вверху) и жмем «Новая установка«;
  • выбираем самую новую (рекомендуется);
  • жмем кнопку «Обзор» и указываем другое место установки игры (либо просто кликаем «Рабочий стол«) и жмем ОК;
  • теперь кликаем «Загрузить«;
  • далее проверяем, чтобы в меню лаунчера выбрана была именно нужная версия и жмем «Играть«.

Источник

While Minecraft isn’t one of the most graphically intensive games, it can still cause problems for players; especially those trying to play Minecraft multiplayer on Minecraft servers.

For those facing the error with Internal Exception while trying to connect to a Minecraft server, it can be challenging to fix it. This can be due to several different reasons.

This guide will dive into the best ways players can hopefully fix the Internal Exception error when trying to play the game.


How do you fix the Minecraft Internal Exception (io.netty.handler) (Java.IO.IOException) errors?

Simply put, a connection problem causes this error. This could be due to several things. Players can try each of the standard solutions listed below to see if one happens to rectify the issue.

First, check if the server you are trying to join has an error

Players should first check whether the connection issue causing the Internal Exception error message is coming from the server or their side.

If the error is from the server-side, players can rest assured that nothing is wrong with their copy of Minecraft or their PC settings. It is simply a problem with the server itself.

The best way to check if the server has an error is by connecting to this testing server with IP: test.prisonfun.com

If the connection to this server is successful, there is no problem with the game client or PC settings. This particular server supports all versions of Minecraft and is always up to date, so it is the best place to test any potential connection problems.

If the connection to this server is unsuccessful, then there is an issue on the player’s side, not the server. Players can try the proposed solutions below to try and fix them.


Update Java

Minecraft is a Java application and needs Java to run. Players should ensure they have the latest official Java version:

  1. Go to the official Java Download found here
  2. Download the latest version of Java available
  3. Complete the installation
  4. Retry on Minecraft to join server IP: test.prisonfun.com

Turn off Firewall + Antivirus + VPN

Minecraft multiplayer is sensitive to specific Firewall rules, Antivirus settings and VPNs.

Players can try and disable all three of these and retry the connection:

Turn off firewall

  1. Press Windows Key + R (or type «run» in the start menu)
  2. Type «control» in the Run menu and hit enter
  3. Press «System and Security»
  4. Press «Windows Firewall»
  5. On the left-hand side, press «Turn windows defender firewall on or off»
  6. Turn off the firewall for both public and private network
  7. Retry on MC to join server IP: test.prisonfun.com

youtube-cover

Turning off the antivirus and VPN is less straightforward than turning off the firewall. It will depend on the specific antivirus and VPN being used.

Turn off AntiVirus

If players are using a specific type of antiviruses such as Norton, McAffee, or Avast, they must be fully disabled in their control panels. After doing this, players can retry to connect to the server IP: test.prisonfun.com

Turn off VPN

If players are connected to any VPN, it should be turned off and disconnected. After doing this, players can retry their connection to the server IP: test.prisonfun.com


Change DNS Server Address

The DNS server can have an impact on failed connections. It is important to make sure it is up to date and accurate.

  1. Press Windows Key + R (or type «run» in the start menu)
  2. Type «control» in the Run menu and hit enter
  3. Navigate to the «Network and internet» tab
  4. Press «Network and sharing center»
  5. Select the connection (usually either «Ethernet» or «wifi»)
  6. Press «Properties»
  7. Click «Internet Protocol Version 4» (IPv4)
  8. Select «Use the following DNS server addresses»
  9. For the primary DNS server, use 8.8.8.8
  10. For an alternate DNS server, use 8.8.4.4
  11. Press «OK»
  12. Retry on Minecraft to join server IP: test.prisonfun.com

Users may want to watch this video below on how to change the DNS server (it works for Windows 10 and 11).

youtube-cover

Turning off the antivirus and VPN is less straightforward than turning off the firewall. It will depend on the specific antivirus and VPN being used.

Turn off AntiVirus

If players are using a specific type of antiviruses such as Norton, McAffee, or Avast, they must be fully disabled in their control panels. After doing this, players can retry to connect to the server IP: test.prisonfun.com

Turn off VPN

If players are connected to any VPN, it should be turned off and disconnected. After doing this, players can retry their connection to the server IP: test.prisonfun.com


Change DNS Server Address

The DNS server can have an impact on failed connections. It is important to make sure it is up to date and accurate.

  1. Press Windows Key + R (or type «run» in the start menu)
  2. Type «control» in the Run menu and hit enter
  3. Navigate to the «Network and internet» tab
  4. Press «Network and sharing center»
  5. Select the connection (usually either «Ethernet» or «wifi»)
  6. Press «Properties»
  7. Click «Internet Protocol Version 4» (IPv4)
  8. Select «Use the following DNS server addresses»
  9. For the primary DNS server, use 8.8.8.8
  10. For an alternate DNS server, use 8.8.4.4
  11. Press «OK»
  12. Retry on Minecraft to join server IP: test.prisonfun.com

Users may want to watch this video below on how to change the DNS server (it works for Windows 10 and 11).


Re-download a fresh Installation of Minecraft

There may be something wrong with the Minecraft installation. Players should try to re-download a fresh copy with no modifications enabled.

  1. Open the official Minecraft launcher (download it here if you don’t have it)
  2. On the main launcher menu, click the «Installations» button (it should be at the top of the screen on the navbar)
  3. Press «New installation»
  4. Select the version of Minecraft you want to use (Latest release is recommended)
  5. Press the green «Create» button on the bottom right of the installation menu
  6. Make sure the newly created version is selected on the main launcher menu
  7. Hit the big green «Play» button on the main launcher menu
  8. Retry on Minecraft to join server IP: test.prisonfun.com

Install Minecraft to a new directory

If re-downloading a fresh installation of Minecraft is unsuccessful, players can try and install a new Minecraft directory altogether.

  1. Open the official Minecraft launcher (download it here if you don’t have it)
  2. On the main launcher menu, click the «Installations» button (it should be at the top of the screen on the navbar)
  3. Press «New installation»
  4. Select the version of the game you want to use (Latest release is recommended)
  5. For the «Game Directory» option, press «Browse» and select any place where you want to install the game on your PC if you don’t know where just press «Desktop» at the top.
  6. Hit OK
  7. Press the green «Create» button on the bottom right to create the new installation profile
  8. Make sure the newly created installation profile is selected on the main launcher menu before launching the game
  9. Hit the big green «Play» button on the main launcher menu
  10. Retry on MC to join server IP: test.prisonfun.com

youtube-cover


Try VPN or a different wifi network

If nothing has worked so far, there might be an issue with the local network. Players can confirm if this is the case by connecting to a different wifi network or simply via a free VPN downloaded online.

Players are free to use their VPN, or they can try out the one in the video tutorial below.

youtube-cover


Try VPN or a different wifi network

If nothing has worked so far, there might be an issue with the local network. Players can confirm if this is the case by connecting to a different wifi network or simply via a free VPN downloaded online.

Players are free to use their VPN, or they can try out the one in the video tutorial below.

After a VPN is connected to it, players can once again try and connect to the test server IP: test.prisonfun.com


Enable Java Native Sandbox

Enabling the Java Native Sandbox option has helped some users clear up their issues related to io.netty.handler and Java.IO.IOException.

  1. Press the Windows key (or click the start menu icon)
  2. Type Configure Java and press enter
  3. Navigate to the «Advanced» tab and scroll down to the «Advanced security settings» and enable the option «enable the operating system’s restricted environment (native sandbox).»
  4. Press Apply, then press OK
  5. Reboot the PC. This is very important.
  6. Retry on Minecraft to join server IP: test.prisonfun.com

Restart Router

Sometimes, the connection problem can originate from the local router needing a reboot. This is for various technical reasons, but restarting a router can assign a new IP and much more, which can help fix the underlying problem.

  1. Unplug the network router
  2. Wait a few minutes (restart your computer during this time)
  3. Plugin the network router
  4. Retry on MC to join server IP: test.prisonfun.com

Ensure there are no parental or admin restrictions on the PC/Network

Another major cause of the io.netty.handler and Java.IO.IOException problems is due to restrictions that are applied by parental control software (e.g., NetNanny, Norton Family, Qustodio, etc…) and network administrators.

Unfortunately, the only way to fix this is to turn them off entirely, which varies in each case due to different software being used.

Should players be aware that parental or admin restrictions are applied to the machine or network, these could most certainly be the underlying cause of the problems.

Once these restrictions are fully turned off, players can once again try and connect to the server with IP: test.prisonfun.com

For detailed guides, walkthroughs, tips & more, check out SK Minecraft Wiki

Edited by Srijan Sen

Thank You!

Profile picture

GIF

Cancel
Send IconReply

ошибка при отправке пакета

  • Автор темы

    qweqweqweqwe

  • Дата начала

    17 Май 2022

  • Теги

    packet

Версия Minecraft

1.7.10

API

Forge

  • #1

крашлог прикрепил, код пакета:

public class MyPacket extends Packet {
    public MyPacket() {}
    @Override
    public void server(EntityPlayerMP p) {
        // my code
    }
}

networkhandler

public class NetworkHandler {
    private short id = 0;
    public static final SimpleNetworkWrapper NETWORK = NetworkRegistry.INSTANCE.newSimpleChannel("mymod");
    public NetworkHandler() {
        register(MyPacket.class, Side.SERVER);
    }
    public static void sendToAllAround(Packet packet, World world, double x, double y, double z, double distance) {
        NETWORK.sendToAllAround(packet, new NetworkRegistry.TargetPoint(world.provider.dimensionId, x, y, z, distance));
    }
    private void register(Class<? extends Packet> packet, Side side) {
        try {
            NETWORK.registerMessage(packet.newInstance(), packet, id++, side);
        } catch (InstantiationException | IllegalAccessException e) {
            e.printStackTrace();
        }
    }
}

packet:

public class Packet implements IMessage, IMessageHandler<Packet, Packet> {
    private ByteBuf buf;
    @Override
    public Packet onMessage(Packet sp, MessageContext ctx) {
        if (ctx.side.isServer())
            sp.server(ctx.getServerHandler().playerEntity);
        else
            sp.client(clientPlayer());
        return null;
    }
    protected ByteBuf buf() {
        return buf != null ? buf : (buf = Unpooled.buffer());
    }
    public void client(EntityPlayer player) {}
    public void server(EntityPlayerMP player) {}
    @Override
    public final void fromBytes(ByteBuf buf) {
        this.buf = buf;
    }
    @Override
    public final void toBytes(ByteBuf buf) {
        if (buf != null)
            buf.writeBytes(this.buf);
    }
    @SideOnly(Side.CLIENT)
    private EntityPlayer clientPlayer() {
        return Minecraft.getMinecraft().thePlayer;
    }
}

new NetworkHandler() делаю в postInit
читал что проблема в том что сторона куда пакет отправляю не зарегистрирована но не заметил где ошибся, прошу помощи
upd: другие пакеты как side.server так и side.client исправно воркают

Краш-лог
[22:07:19] [Client thread/ERROR] [FML]: FMLIndexedMessageCodec exception caught
io.netty.handler.codec.EncoderException: java.lang.NullPointerException
at io.netty.handler.codec.MessageToMessageEncoder.write(MessageToMessageEncoder.java:107) ~[MessageToMessageEncoder.class:?]
at io.netty.handler.codec.MessageToMessageCodec.write(MessageToMessageCodec.java:116) ~[MessageToMessageCodec.class:?]
at io.netty.channel.DefaultChannelHandlerContext.invokeWrite(DefaultChannelHandlerContext.java:644) ~[DefaultChannelHandlerContext.class:?]
at io.netty.channel.DefaultChannelHandlerContext.write(DefaultChannelHandlerContext.java:698) ~[DefaultChannelHandlerContext.class:?]
at io.netty.channel.DefaultChannelHandlerContext.writeAndFlush(DefaultChannelHandlerContext.java:688) ~[DefaultChannelHandlerContext.class:?]
at io.netty.channel.DefaultChannelHandlerContext.writeAndFlush(DefaultChannelHandlerContext.java:717) ~[DefaultChannelHandlerContext.class:?]
at io.netty.channel.DefaultChannelPipeline.writeAndFlush(DefaultChannelPipeline.java:893) ~[DefaultChannelPipeline.class:?]
at io.netty.channel.AbstractChannel.writeAndFlush(AbstractChannel.java:239) ~[AbstractChannel.class:?]
at cpw.mods.fml.common.network.simpleimpl.SimpleNetworkWrapper.sendToServer(SimpleNetworkWrapper.java:236) [SimpleNetworkWrapper.class:?]
at dayz.proxy.ClientEventHandler.keyInput(ClientEventHandler.java:60) [ClientEventHandler.class:?]
at cpw.mods.fml.common.eventhandler.ASMEventHandler_18_ClientEventHandler_keyInput_KeyInputEvent.invoke(.dynamic) [?:?]
at cpw.mods.fml.common.eventhandler.ASMEventHandler.invoke(ASMEventHandler.java:54) [ASMEventHandler.class:?]
at cpw.mods.fml.common.eventhandler.EventBus.post(EventBus.java:140) [EventBus.class:?]
at cpw.mods.fml.common.FMLCommonHandler.fireKeyInput(FMLCommonHandler.java:540) [FMLCommonHandler.class:?]
at net.minecraft.client.Minecraft.runTick(Minecraft.java:1964) [Minecraft.class:?]
at net.minecraft.client.Minecraft.runGameLoop(Minecraft.java:1039) [Minecraft.class:?]
at net.minecraft.client.Minecraft.run(Minecraft.java:962) [Minecraft.class:?]
at net.minecraft.client.main.Main.main(Main.java:164) [Main.class:?]
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_321]
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_321]
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_321]
at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_321]
at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) [launchwrapper-1.12.jar:?]
at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.12.jar:?]
at net.minecraftforge.gradle.GradleStartCommon.launch(Unknown Source) [start/:?]
at GradleStart.main(Unknown Source) [start/:?]
Caused by: java.lang.NullPointerException
at io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:824) ~[AbstractByteBuf.class:?]
at dayz.network.Packet.toBytes(Packet.java:36) ~[Packet.class:?]
at cpw.mods.fml.common.network.simpleimpl.SimpleIndexedCodec.encodeInto(SimpleIndexedCodec.java:11) ~[SimpleIndexedCodec.class:?]
at cpw.mods.fml.common.network.simpleimpl.SimpleIndexedCodec.encodeInto(SimpleIndexedCodec.java:7) ~[SimpleIndexedCodec.class:?]
at cpw.mods.fml.common.network.FMLIndexedMessageToMessageCodec.encode(FMLIndexedMessageToMessageCodec.java:51) ~[FMLIndexedMessageToMessageCodec.class:?]
at io.netty.handler.codec.MessageToMessageCodec$1.encode(MessageToMessageCodec.java:67) ~[MessageToMessageCodec$1.class:?]
at io.netty.handler.codec.MessageToMessageEncoder.write(MessageToMessageEncoder.java:89) ~[MessageToMessageEncoder.class:?]
... 25 more
[22:07:19] [Client thread/ERROR] [FML]: SimpleChannelHandlerWrapper exception
io.netty.handler.codec.EncoderException: java.lang.NullPointerException
at io.netty.handler.codec.MessageToMessageEncoder.write(MessageToMessageEncoder.java:107) ~[MessageToMessageEncoder.class:?]
at io.netty.handler.codec.MessageToMessageCodec.write(MessageToMessageCodec.java:116) ~[MessageToMessageCodec.class:?]
at io.netty.channel.DefaultChannelHandlerContext.invokeWrite(DefaultChannelHandlerContext.java:644) ~[DefaultChannelHandlerContext.class:?]
at io.netty.channel.DefaultChannelHandlerContext.write(DefaultChannelHandlerContext.java:698) ~[DefaultChannelHandlerContext.class:?]
at io.netty.channel.DefaultChannelHandlerContext.writeAndFlush(DefaultChannelHandlerContext.java:688) ~[DefaultChannelHandlerContext.class:?]
at io.netty.channel.DefaultChannelHandlerContext.writeAndFlush(DefaultChannelHandlerContext.java:717) ~[DefaultChannelHandlerContext.class:?]
at io.netty.channel.DefaultChannelPipeline.writeAndFlush(DefaultChannelPipeline.java:893) ~[DefaultChannelPipeline.class:?]
at io.netty.channel.AbstractChannel.writeAndFlush(AbstractChannel.java:239) ~[AbstractChannel.class:?]
at cpw.mods.fml.common.network.simpleimpl.SimpleNetworkWrapper.sendToServer(SimpleNetworkWrapper.java:236) [SimpleNetworkWrapper.class:?]
at dayz.proxy.ClientEventHandler.keyInput(ClientEventHandler.java:60) [ClientEventHandler.class:?]
at cpw.mods.fml.common.eventhandler.ASMEventHandler_18_ClientEventHandler_keyInput_KeyInputEvent.invoke(.dynamic) [?:?]
at cpw.mods.fml.common.eventhandler.ASMEventHandler.invoke(ASMEventHandler.java:54) [ASMEventHandler.class:?]
at cpw.mods.fml.common.eventhandler.EventBus.post(EventBus.java:140) [EventBus.class:?]
at cpw.mods.fml.common.FMLCommonHandler.fireKeyInput(FMLCommonHandler.java:540) [FMLCommonHandler.class:?]
at net.minecraft.client.Minecraft.runTick(Minecraft.java:1964) [Minecraft.class:?]
at net.minecraft.client.Minecraft.runGameLoop(Minecraft.java:1039) [Minecraft.class:?]
at net.minecraft.client.Minecraft.run(Minecraft.java:962) [Minecraft.class:?]
at net.minecraft.client.main.Main.main(Main.java:164) [Main.class:?]
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_321]
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_321]
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_321]
at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_321]
at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) [launchwrapper-1.12.jar:?]
at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.12.jar:?]
at net.minecraftforge.gradle.GradleStartCommon.launch(Unknown Source) [start/:?]
at GradleStart.main(Unknown Source) [start/:?]
Caused by: java.lang.NullPointerException
at io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:824) ~[AbstractByteBuf.class:?]
at dayz.network.Packet.toBytes(Packet.java:36) ~[Packet.class:?]
at cpw.mods.fml.common.network.simpleimpl.SimpleIndexedCodec.encodeInto(SimpleIndexedCodec.java:11) ~[SimpleIndexedCodec.class:?]
at cpw.mods.fml.common.network.simpleimpl.SimpleIndexedCodec.encodeInto(SimpleIndexedCodec.java:7) ~[SimpleIndexedCodec.class:?]
at cpw.mods.fml.common.network.FMLIndexedMessageToMessageCodec.encode(FMLIndexedMessageToMessageCodec.java:51) ~[FMLIndexedMessageToMessageCodec.class:?]
at io.netty.handler.codec.MessageToMessageCodec$1.encode(MessageToMessageCodec.java:67) ~[MessageToMessageCodec$1.class:?]
at io.netty.handler.codec.MessageToMessageEncoder.write(MessageToMessageEncoder.java:89) ~[MessageToMessageEncoder.class:?]
... 25 more
[22:07:19] [Client thread/ERROR] [FML]: SimpleChannelHandlerWrapper exception
io.netty.handler.codec.EncoderException: java.lang.NullPointerException
at io.netty.handler.codec.MessageToMessageEncoder.write(MessageToMessageEncoder.java:107) ~[MessageToMessageEncoder.class:?]
at io.netty.handler.codec.MessageToMessageCodec.write(MessageToMessageCodec.java:116) ~[MessageToMessageCodec.class:?]
at io.netty.channel.DefaultChannelHandlerContext.invokeWrite(DefaultChannelHandlerContext.java:644) ~[DefaultChannelHandlerContext.class:?]
at io.netty.channel.DefaultChannelHandlerContext.write(DefaultChannelHandlerContext.java:698) ~[DefaultChannelHandlerContext.class:?]
at io.netty.channel.DefaultChannelHandlerContext.writeAndFlush(DefaultChannelHandlerContext.java:688) ~[DefaultChannelHandlerContext.class:?]
at io.netty.channel.DefaultChannelHandlerContext.writeAndFlush(DefaultChannelHandlerContext.java:717) ~[DefaultChannelHandlerContext.class:?]
at io.netty.channel.DefaultChannelPipeline.writeAndFlush(DefaultChannelPipeline.java:893) ~[DefaultChannelPipeline.class:?]
at io.netty.channel.AbstractChannel.writeAndFlush(AbstractChannel.java:239) ~[AbstractChannel.class:?]
at cpw.mods.fml.common.network.simpleimpl.SimpleNetworkWrapper.sendToServer(SimpleNetworkWrapper.java:236) [SimpleNetworkWrapper.class:?]
at dayz.proxy.ClientEventHandler.keyInput(ClientEventHandler.java:60) [ClientEventHandler.class:?]
at cpw.mods.fml.common.eventhandler.ASMEventHandler_18_ClientEventHandler_keyInput_KeyInputEvent.invoke(.dynamic) [?:?]
at cpw.mods.fml.common.eventhandler.ASMEventHandler.invoke(ASMEventHandler.java:54) [ASMEventHandler.class:?]
at cpw.mods.fml.common.eventhandler.EventBus.post(EventBus.java:140) [EventBus.class:?]
at cpw.mods.fml.common.FMLCommonHandler.fireKeyInput(FMLCommonHandler.java:540) [FMLCommonHandler.class:?]
at net.minecraft.client.Minecraft.runTick(Minecraft.java:1964) [Minecraft.class:?]
at net.minecraft.client.Minecraft.runGameLoop(Minecraft.java:1039) [Minecraft.class:?]
at net.minecraft.client.Minecraft.run(Minecraft.java:962) [Minecraft.class:?]
at net.minecraft.client.main.Main.main(Main.java:164) [Main.class:?]
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_321]
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_321]
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_321]
at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_321]
at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) [launchwrapper-1.12.jar:?]
at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.12.jar:?]
at net.minecraftforge.gradle.GradleStartCommon.launch(Unknown Source) [start/:?]
at GradleStart.main(Unknown Source) [start/:?]
Caused by: java.lang.NullPointerException
at io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:824) ~[AbstractByteBuf.class:?]
at dayz.network.Packet.toBytes(Packet.java:36) ~[Packet.class:?]
at cpw.mods.fml.common.network.simpleimpl.SimpleIndexedCodec.encodeInto(SimpleIndexedCodec.java:11) ~[SimpleIndexedCodec.class:?]
at cpw.mods.fml.common.network.simpleimpl.SimpleIndexedCodec.encodeInto(SimpleIndexedCodec.java:7) ~[SimpleIndexedCodec.class:?]
at cpw.mods.fml.common.network.FMLIndexedMessageToMessageCodec.encode(FMLIndexedMessageToMessageCodec.java:51) ~[FMLIndexedMessageToMessageCodec.class:?]
at io.netty.handler.codec.MessageToMessageCodec$1.encode(MessageToMessageCodec.java:67) ~[MessageToMessageCodec$1.class:?]
at io.netty.handler.codec.MessageToMessageEncoder.write(MessageToMessageEncoder.java:89) ~[MessageToMessageEncoder.class:?]
... 25 more
[22:07:19] [Client thread/ERROR] [FML]: SimpleChannelHandlerWrapper exception
io.netty.handler.codec.EncoderException: java.lang.NullPointerException
at io.netty.handler.codec.MessageToMessageEncoder.write(MessageToMessageEncoder.java:107) ~[MessageToMessageEncoder.class:?]
at io.netty.handler.codec.MessageToMessageCodec.write(MessageToMessageCodec.java:116) ~[MessageToMessageCodec.class:?]
at io.netty.channel.DefaultChannelHandlerContext.invokeWrite(DefaultChannelHandlerContext.java:644) ~[DefaultChannelHandlerContext.class:?]
at io.netty.channel.DefaultChannelHandlerContext.write(DefaultChannelHandlerContext.java:698) ~[DefaultChannelHandlerContext.class:?]
at io.netty.channel.DefaultChannelHandlerContext.writeAndFlush(DefaultChannelHandlerContext.java:688) ~[DefaultChannelHandlerContext.class:?]
at io.netty.channel.DefaultChannelHandlerContext.writeAndFlush(DefaultChannelHandlerContext.java:717) ~[DefaultChannelHandlerContext.class:?]
at io.netty.channel.DefaultChannelPipeline.writeAndFlush(DefaultChannelPipeline.java:893) ~[DefaultChannelPipeline.class:?]
at io.netty.channel.AbstractChannel.writeAndFlush(AbstractChannel.java:239) ~[AbstractChannel.class:?]
at cpw.mods.fml.common.network.simpleimpl.SimpleNetworkWrapper.sendToServer(SimpleNetworkWrapper.java:236) [SimpleNetworkWrapper.class:?]
at dayz.proxy.ClientEventHandler.keyInput(ClientEventHandler.java:60) [ClientEventHandler.class:?]
at cpw.mods.fml.common.eventhandler.ASMEventHandler_18_ClientEventHandler_keyInput_KeyInputEvent.invoke(.dynamic) [?:?]
at cpw.mods.fml.common.eventhandler.ASMEventHandler.invoke(ASMEventHandler.java:54) [ASMEventHandler.class:?]
at cpw.mods.fml.common.eventhandler.EventBus.post(EventBus.java:140) [EventBus.class:?]
at cpw.mods.fml.common.FMLCommonHandler.fireKeyInput(FMLCommonHandler.java:540) [FMLCommonHandler.class:?]
at net.minecraft.client.Minecraft.runTick(Minecraft.java:1964) [Minecraft.class:?]
at net.minecraft.client.Minecraft.runGameLoop(Minecraft.java:1039) [Minecraft.class:?]
at net.minecraft.client.Minecraft.run(Minecraft.java:962) [Minecraft.class:?]
at net.minecraft.client.main.Main.main(Main.java:164) [Main.class:?]
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_321]
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_321]
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_321]
at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_321]
at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) [launchwrapper-1.12.jar:?]
at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.12.jar:?]
at net.minecraftforge.gradle.GradleStartCommon.launch(Unknown Source) [start/:?]
at GradleStart.main(Unknown Source) [start/:?]
Caused by: java.lang.NullPointerException
at io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:824) ~[AbstractByteBuf.class:?]
at dayz.network.Packet.toBytes(Packet.java:36) ~[Packet.class:?]
at cpw.mods.fml.common.network.simpleimpl.SimpleIndexedCodec.encodeInto(SimpleIndexedCodec.java:11) ~[SimpleIndexedCodec.class:?]
at cpw.mods.fml.common.network.simpleimpl.SimpleIndexedCodec.encodeInto(SimpleIndexedCodec.java:7) ~[SimpleIndexedCodec.class:?]
at cpw.mods.fml.common.network.FMLIndexedMessageToMessageCodec.encode(FMLIndexedMessageToMessageCodec.java:51) ~[FMLIndexedMessageToMessageCodec.class:?]
at io.netty.handler.codec.MessageToMessageCodec$1.encode(MessageToMessageCodec.java:67) ~[MessageToMessageCodec$1.class:?]
at io.netty.handler.codec.MessageToMessageEncoder.write(MessageToMessageEncoder.java:89) ~[MessageToMessageEncoder.class:?]
... 25 more
[22:07:19] [Client thread/ERROR] [FML]: There was a critical exception handling a packet on channel mymod
io.netty.handler.codec.EncoderException: java.lang.NullPointerException
at io.netty.handler.codec.MessageToMessageEncoder.write(MessageToMessageEncoder.java:107) ~[MessageToMessageEncoder.class:?]
at io.netty.handler.codec.MessageToMessageCodec.write(MessageToMessageCodec.java:116) ~[MessageToMessageCodec.class:?]
at io.netty.channel.DefaultChannelHandlerContext.invokeWrite(DefaultChannelHandlerContext.java:644) ~[DefaultChannelHandlerContext.class:?]
at io.netty.channel.DefaultChannelHandlerContext.write(DefaultChannelHandlerContext.java:698) ~[DefaultChannelHandlerContext.class:?]
at io.netty.channel.DefaultChannelHandlerContext.writeAndFlush(DefaultChannelHandlerContext.java:688) ~[DefaultChannelHandlerContext.class:?]
at io.netty.channel.DefaultChannelHandlerContext.writeAndFlush(DefaultChannelHandlerContext.java:717) ~[DefaultChannelHandlerContext.class:?]
at io.netty.channel.DefaultChannelPipeline.writeAndFlush(DefaultChannelPipeline.java:893) ~[DefaultChannelPipeline.class:?]
at io.netty.channel.AbstractChannel.writeAndFlush(AbstractChannel.java:239) ~[AbstractChannel.class:?]
at cpw.mods.fml.common.network.simpleimpl.SimpleNetworkWrapper.sendToServer(SimpleNetworkWrapper.java:236) ~[SimpleNetworkWrapper.class:?]
at dayz.proxy.ClientEventHandler.keyInput(ClientEventHandler.java:60) ~[ClientEventHandler.class:?]
at cpw.mods.fml.common.eventhandler.ASMEventHandler_18_ClientEventHandler_keyInput_KeyInputEvent.invoke(.dynamic) ~[?:?]
at cpw.mods.fml.common.eventhandler.ASMEventHandler.invoke(ASMEventHandler.java:54) ~[ASMEventHandler.class:?]
at cpw.mods.fml.common.eventhandler.EventBus.post(EventBus.java:140) ~[EventBus.class:?]
at cpw.mods.fml.common.FMLCommonHandler.fireKeyInput(FMLCommonHandler.java:540) ~[FMLCommonHandler.class:?]
at net.minecraft.client.Minecraft.runTick(Minecraft.java:1964) [Minecraft.class:?]
at net.minecraft.client.Minecraft.runGameLoop(Minecraft.java:1039) [Minecraft.class:?]
at net.minecraft.client.Minecraft.run(Minecraft.java:962) [Minecraft.class:?]
at net.minecraft.client.main.Main.main(Main.java:164) [Main.class:?]
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_321]
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_321]
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_321]
at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_321]
at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) [launchwrapper-1.12.jar:?]
at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.12.jar:?]
at net.minecraftforge.gradle.GradleStartCommon.launch(Unknown Source) [start/:?]
at GradleStart.main(Unknown Source) [start/:?]
Caused by: java.lang.NullPointerException
at io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:824) ~[AbstractByteBuf.class:?]
at dayz.network.Packet.toBytes(Packet.java:36) ~[Packet.class:?]
at cpw.mods.fml.common.network.simpleimpl.SimpleIndexedCodec.encodeInto(SimpleIndexedCodec.java:11) ~[SimpleIndexedCodec.class:?]
at cpw.mods.fml.common.network.simpleimpl.SimpleIndexedCodec.encodeInto(SimpleIndexedCodec.java:7) ~[SimpleIndexedCodec.class:?]
at cpw.mods.fml.common.network.FMLIndexedMessageToMessageCodec.encode(FMLIndexedMessageToMessageCodec.java:51) ~[FMLIndexedMessageToMessageCodec.class:?]
at io.netty.handler.codec.MessageToMessageCodec$1.encode(MessageToMessageCodec.java:67) ~[MessageToMessageCodec$1.class:?]
at io.netty.handler.codec.MessageToMessageEncoder.write(MessageToMessageEncoder.java:89) ~[MessageToMessageEncoder.class:?]
... 25 more
[22:07:19] [Client thread/ERROR] [FML]: FMLIndexedMessageCodec exception caught io.netty.handler.codec.EncoderException: java.lang.NullPointerException at io.netty.handler.codec.MessageToMessageEncoder.write(MessageToMessageEncoder.java:107) ~[MessageToMessageEncoder.class:?] at io.netty.handler.codec.MessageToMessageCodec.write(MessageToMessageCodec.java:116) ~[MessageToMessageCodec.class:?] at io.netty.channel.DefaultChannelHandlerContext.invokeWrite(DefaultChannelHandlerContext.java:644) ~[DefaultChannelHandlerContext.class:?] at io.netty.channel.DefaultChannelHandlerContext.write(DefaultChannelHandlerContext.java:698) ~[DefaultChannelHandlerContext.class:?] at io.netty.channel.DefaultChannelHandlerContext.writeAndFlush(DefaultChannelHandlerContext.java:688) ~[DefaultChannelHandlerContext.class:?] at io.netty.channel.DefaultChannelHandlerContext.writeAndFlush(DefaultChannelHandlerContext.java:717) ~[DefaultChannelHandlerContext.class:?] at io.netty.channel.DefaultChannelPipeline.writeAndFlush(DefaultChannelPipeline.java:893) ~[DefaultChannelPipeline.class:?] at io.netty.channel.AbstractChannel.writeAndFlush(AbstractChannel.java:239) ~[AbstractChannel.class:?] at cpw.mods.fml.common.network.simpleimpl.SimpleNetworkWrapper.sendToServer(SimpleNetworkWrapper.java:236) [SimpleNetworkWrapper.class:?] at dayz.proxy.ClientEventHandler.keyInput(ClientEventHandler.java:60) [ClientEventHandler.class:?] at cpw.mods.fml.common.eventhandler.ASMEventHandler_18_ClientEventHandler_keyInput_KeyInputEvent.invoke(.dynamic) [?:?] at cpw.mods.fml.common.eventhandler.ASMEventHandler.invoke(ASMEventHandler.java:54) [ASMEventHandler.class:?] at cpw.mods.fml.common.eventhandler.EventBus.post(EventBus.java:140) [EventBus.class:?] at cpw.mods.fml.common.FMLCommonHandler.fireKeyInput(FMLCommonHandler.java:540) [FMLCommonHandler.class:?] at net.minecraft.client.Minecraft.runTick(Minecraft.java:1964) [Minecraft.class:?] at net.minecraft.client.Minecraft.runGameLoop(Minecraft.java:1039) [Minecraft.class:?] at net.minecraft.client.Minecraft.run(Minecraft.java:962) [Minecraft.class:?] at net.minecraft.client.main.Main.main(Main.java:164) [Main.class:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_321] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_321] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_321] at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_321] at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) [launchwrapper-1.12.jar:?] at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.12.jar:?] at net.minecraftforge.gradle.GradleStartCommon.launch(Unknown Source) [start/:?] at GradleStart.main(Unknown Source) [start/:?] Caused by: java.lang.NullPointerException at io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:824) ~[AbstractByteBuf.class:?] at dayz.network.Packet.toBytes(Packet.java:36) ~[Packet.class:?] at cpw.mods.fml.common.network.simpleimpl.SimpleIndexedCodec.encodeInto(SimpleIndexedCodec.java:11) ~[SimpleIndexedCodec.class:?] at cpw.mods.fml.common.network.simpleimpl.SimpleIndexedCodec.encodeInto(SimpleIndexedCodec.java:7) ~[SimpleIndexedCodec.class:?] at cpw.mods.fml.common.network.FMLIndexedMessageToMessageCodec.encode(FMLIndexedMessageToMessageCodec.java:51) ~[FMLIndexedMessageToMessageCodec.class:?] at io.netty.handler.codec.MessageToMessageCodec$1.encode(MessageToMessageCodec.java:67) ~[MessageToMessageCodec$1.class:?] at io.netty.handler.codec.MessageToMessageEncoder.write(MessageToMessageEncoder.java:89) ~[MessageToMessageEncoder.class:?] ... 25 more [22:07:19] [Client thread/ERROR] [FML]: SimpleChannelHandlerWrapper exception io.netty.handler.codec.EncoderException: java.lang.NullPointerException at io.netty.handler.codec.MessageToMessageEncoder.write(MessageToMessageEncoder.java:107) ~[MessageToMessageEncoder.class:?] at io.netty.handler.codec.MessageToMessageCodec.write(MessageToMessageCodec.java:116) ~[MessageToMessageCodec.class:?] at io.netty.channel.DefaultChannelHandlerContext.invokeWrite(DefaultChannelHandlerContext.java:644) ~[DefaultChannelHandlerContext.class:?] at io.netty.channel.DefaultChannelHandlerContext.write(DefaultChannelHandlerContext.java:698) ~[DefaultChannelHandlerContext.class:?] at io.netty.channel.DefaultChannelHandlerContext.writeAndFlush(DefaultChannelHandlerContext.java:688) ~[DefaultChannelHandlerContext.class:?] at io.netty.channel.DefaultChannelHandlerContext.writeAndFlush(DefaultChannelHandlerContext.java:717) ~[DefaultChannelHandlerContext.class:?] at io.netty.channel.DefaultChannelPipeline.writeAndFlush(DefaultChannelPipeline.java:893) ~[DefaultChannelPipeline.class:?] at io.netty.channel.AbstractChannel.writeAndFlush(AbstractChannel.java:239) ~[AbstractChannel.class:?] at cpw.mods.fml.common.network.simpleimpl.SimpleNetworkWrapper.sendToServer(SimpleNetworkWrapper.java:236) [SimpleNetworkWrapper.class:?] at dayz.proxy.ClientEventHandler.keyInput(ClientEventHandler.java:60) [ClientEventHandler.class:?] at cpw.mods.fml.common.eventhandler.ASMEventHandler_18_ClientEventHandler_keyInput_KeyInputEvent.invoke(.dynamic) [?:?] at cpw.mods.fml.common.eventhandler.ASMEventHandler.invoke(ASMEventHandler.java:54) [ASMEventHandler.class:?] at cpw.mods.fml.common.eventhandler.EventBus.post(EventBus.java:140) [EventBus.class:?] at cpw.mods.fml.common.FMLCommonHandler.fireKeyInput(FMLCommonHandler.java:540) [FMLCommonHandler.class:?] at net.minecraft.client.Minecraft.runTick(Minecraft.java:1964) [Minecraft.class:?] at net.minecraft.client.Minecraft.runGameLoop(Minecraft.java:1039) [Minecraft.class:?] at net.minecraft.client.Minecraft.run(Minecraft.java:962) [Minecraft.class:?] at net.minecraft.client.main.Main.main(Main.java:164) [Main.class:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_321] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_321] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_321] at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_321] at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) [launchwrapper-1.12.jar:?] at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.12.jar:?] at net.minecraftforge.gradle.GradleStartCommon.launch(Unknown Source) [start/:?] at GradleStart.main(Unknown Source) [start/:?] Caused by: java.lang.NullPointerException at io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:824) ~[AbstractByteBuf.class:?] at dayz.network.Packet.toBytes(Packet.java:36) ~[Packet.class:?] at cpw.mods.fml.common.network.simpleimpl.SimpleIndexedCodec.encodeInto(SimpleIndexedCodec.java:11) ~[SimpleIndexedCodec.class:?] at cpw.mods.fml.common.network.simpleimpl.SimpleIndexedCodec.encodeInto(SimpleIndexedCodec.java:7) ~[SimpleIndexedCodec.class:?] at cpw.mods.fml.common.network.FMLIndexedMessageToMessageCodec.encode(FMLIndexedMessageToMessageCodec.java:51) ~[FMLIndexedMessageToMessageCodec.class:?] at io.netty.handler.codec.MessageToMessageCodec$1.encode(MessageToMessageCodec.java:67) ~[MessageToMessageCodec$1.class:?] at io.netty.handler.codec.MessageToMessageEncoder.write(MessageToMessageEncoder.java:89) ~[MessageToMessageEncoder.class:?] ... 25 more [22:07:19] [Client thread/ERROR] [FML]: SimpleChannelHandlerWrapper exception io.netty.handler.codec.EncoderException: java.lang.NullPointerException at io.netty.handler.codec.MessageToMessageEncoder.write(MessageToMessageEncoder.java:107) ~[MessageToMessageEncoder.class:?] at io.netty.handler.codec.MessageToMessageCodec.write(MessageToMessageCodec.java:116) ~[MessageToMessageCodec.class:?] at io.netty.channel.DefaultChannelHandlerContext.invokeWrite(DefaultChannelHandlerContext.java:644) ~[DefaultChannelHandlerContext.class:?] at io.netty.channel.DefaultChannelHandlerContext.write(DefaultChannelHandlerContext.java:698) ~[DefaultChannelHandlerContext.class:?] at io.netty.channel.DefaultChannelHandlerContext.writeAndFlush(DefaultChannelHandlerContext.java:688) ~[DefaultChannelHandlerContext.class:?] at io.netty.channel.DefaultChannelHandlerContext.writeAndFlush(DefaultChannelHandlerContext.java:717) ~[DefaultChannelHandlerContext.class:?] at io.netty.channel.DefaultChannelPipeline.writeAndFlush(DefaultChannelPipeline.java:893) ~[DefaultChannelPipeline.class:?] at io.netty.channel.AbstractChannel.writeAndFlush(AbstractChannel.java:239) ~[AbstractChannel.class:?] at cpw.mods.fml.common.network.simpleimpl.SimpleNetworkWrapper.sendToServer(SimpleNetworkWrapper.java:236) [SimpleNetworkWrapper.class:?] at dayz.proxy.ClientEventHandler.keyInput(ClientEventHandler.java:60) [ClientEventHandler.class:?] at cpw.mods.fml.common.eventhandler.ASMEventHandler_18_ClientEventHandler_keyInput_KeyInputEvent.invoke(.dynamic) [?:?] at cpw.mods.fml.common.eventhandler.ASMEventHandler.invoke(ASMEventHandler.java:54) [ASMEventHandler.class:?] at cpw.mods.fml.common.eventhandler.EventBus.post(EventBus.java:140) [EventBus.class:?] at cpw.mods.fml.common.FMLCommonHandler.fireKeyInput(FMLCommonHandler.java:540) [FMLCommonHandler.class:?] at net.minecraft.client.Minecraft.runTick(Minecraft.java:1964) [Minecraft.class:?] at net.minecraft.client.Minecraft.runGameLoop(Minecraft.java:1039) [Minecraft.class:?] at net.minecraft.client.Minecraft.run(Minecraft.java:962) [Minecraft.class:?] at net.minecraft.client.main.Main.main(Main.java:164) [Main.class:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_321] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_321] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_321] at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_321] at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) [launchwrapper-1.12.jar:?] at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.12.jar:?] at net.minecraftforge.gradle.GradleStartCommon.launch(Unknown Source) [start/:?] at GradleStart.main(Unknown Source) [start/:?] Caused by: java.lang.NullPointerException at io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:824) ~[AbstractByteBuf.class:?] at dayz.network.Packet.toBytes(Packet.java:36) ~[Packet.class:?] at cpw.mods.fml.common.network.simpleimpl.SimpleIndexedCodec.encodeInto(SimpleIndexedCodec.java:11) ~[SimpleIndexedCodec.class:?] at cpw.mods.fml.common.network.simpleimpl.SimpleIndexedCodec.encodeInto(SimpleIndexedCodec.java:7) ~[SimpleIndexedCodec.class:?] at cpw.mods.fml.common.network.FMLIndexedMessageToMessageCodec.encode(FMLIndexedMessageToMessageCodec.java:51) ~[FMLIndexedMessageToMessageCodec.class:?] at io.netty.handler.codec.MessageToMessageCodec$1.encode(MessageToMessageCodec.java:67) ~[MessageToMessageCodec$1.class:?] at io.netty.handler.codec.MessageToMessageEncoder.write(MessageToMessageEncoder.java:89) ~[MessageToMessageEncoder.class:?] ... 25 more [22:07:19] [Client thread/ERROR] [FML]: SimpleChannelHandlerWrapper exception io.netty.handler.codec.EncoderException: java.lang.NullPointerException at io.netty.handler.codec.MessageToMessageEncoder.write(MessageToMessageEncoder.java:107) ~[MessageToMessageEncoder.class:?] at io.netty.handler.codec.MessageToMessageCodec.write(MessageToMessageCodec.java:116) ~[MessageToMessageCodec.class:?] at io.netty.channel.DefaultChannelHandlerContext.invokeWrite(DefaultChannelHandlerContext.java:644) ~[DefaultChannelHandlerContext.class:?] at io.netty.channel.DefaultChannelHandlerContext.write(DefaultChannelHandlerContext.java:698) ~[DefaultChannelHandlerContext.class:?] at io.netty.channel.DefaultChannelHandlerContext.writeAndFlush(DefaultChannelHandlerContext.java:688) ~[DefaultChannelHandlerContext.class:?] at io.netty.channel.DefaultChannelHandlerContext.writeAndFlush(DefaultChannelHandlerContext.java:717) ~[DefaultChannelHandlerContext.class:?] at io.netty.channel.DefaultChannelPipeline.writeAndFlush(DefaultChannelPipeline.java:893) ~[DefaultChannelPipeline.class:?] at io.netty.channel.AbstractChannel.writeAndFlush(AbstractChannel.java:239) ~[AbstractChannel.class:?] at cpw.mods.fml.common.network.simpleimpl.SimpleNetworkWrapper.sendToServer(SimpleNetworkWrapper.java:236) [SimpleNetworkWrapper.class:?] at dayz.proxy.ClientEventHandler.keyInput(ClientEventHandler.java:60) [ClientEventHandler.class:?] at cpw.mods.fml.common.eventhandler.ASMEventHandler_18_ClientEventHandler_keyInput_KeyInputEvent.invoke(.dynamic) [?:?] at cpw.mods.fml.common.eventhandler.ASMEventHandler.invoke(ASMEventHandler.java:54) [ASMEventHandler.class:?] at cpw.mods.fml.common.eventhandler.EventBus.post(EventBus.java:140) [EventBus.class:?] at cpw.mods.fml.common.FMLCommonHandler.fireKeyInput(FMLCommonHandler.java:540) [FMLCommonHandler.class:?] at net.minecraft.client.Minecraft.runTick(Minecraft.java:1964) [Minecraft.class:?] at net.minecraft.client.Minecraft.runGameLoop(Minecraft.java:1039) [Minecraft.class:?] at net.minecraft.client.Minecraft.run(Minecraft.java:962) [Minecraft.class:?] at net.minecraft.client.main.Main.main(Main.java:164) [Main.class:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_321] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_321] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_321] at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_321] at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) [launchwrapper-1.12.jar:?] at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.12.jar:?] at net.minecraftforge.gradle.GradleStartCommon.launch(Unknown Source) [start/:?] at GradleStart.main(Unknown Source) [start/:?] Caused by: java.lang.NullPointerException at io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:824) ~[AbstractByteBuf.class:?] at dayz.network.Packet.toBytes(Packet.java:36) ~[Packet.class:?] at cpw.mods.fml.common.network.simpleimpl.SimpleIndexedCodec.encodeInto(SimpleIndexedCodec.java:11) ~[SimpleIndexedCodec.class:?] at cpw.mods.fml.common.network.simpleimpl.SimpleIndexedCodec.encodeInto(SimpleIndexedCodec.java:7) ~[SimpleIndexedCodec.class:?] at cpw.mods.fml.common.network.FMLIndexedMessageToMessageCodec.encode(FMLIndexedMessageToMessageCodec.java:51) ~[FMLIndexedMessageToMessageCodec.class:?] at io.netty.handler.codec.MessageToMessageCodec$1.encode(MessageToMessageCodec.java:67) ~[MessageToMessageCodec$1.class:?] at io.netty.handler.codec.MessageToMessageEncoder.write(MessageToMessageEncoder.java:89) ~[MessageToMessageEncoder.class:?] ... 25 more [22:07:19] [Client thread/ERROR] [FML]: There was a critical exception handling a packet on channel mymod io.netty.handler.codec.EncoderException: java.lang.NullPointerException at io.netty.handler.codec.MessageToMessageEncoder.write(MessageToMessageEncoder.java:107) ~[MessageToMessageEncoder.class:?] at io.netty.handler.codec.MessageToMessageCodec.write(MessageToMessageCodec.java:116) ~[MessageToMessageCodec.class:?] at io.netty.channel.DefaultChannelHandlerContext.invokeWrite(DefaultChannelHandlerContext.java:644) ~[DefaultChannelHandlerContext.class:?] at io.netty.channel.DefaultChannelHandlerContext.write(DefaultChannelHandlerContext.java:698) ~[DefaultChannelHandlerContext.class:?] at io.netty.channel.DefaultChannelHandlerContext.writeAndFlush(DefaultChannelHandlerContext.java:688) ~[DefaultChannelHandlerContext.class:?] at io.netty.channel.DefaultChannelHandlerContext.writeAndFlush(DefaultChannelHandlerContext.java:717) ~[DefaultChannelHandlerContext.class:?] at io.netty.channel.DefaultChannelPipeline.writeAndFlush(DefaultChannelPipeline.java:893) ~[DefaultChannelPipeline.class:?] at io.netty.channel.AbstractChannel.writeAndFlush(AbstractChannel.java:239) ~[AbstractChannel.class:?] at cpw.mods.fml.common.network.simpleimpl.SimpleNetworkWrapper.sendToServer(SimpleNetworkWrapper.java:236) ~[SimpleNetworkWrapper.class:?] at dayz.proxy.ClientEventHandler.keyInput(ClientEventHandler.java:60) ~[ClientEventHandler.class:?] at cpw.mods.fml.common.eventhandler.ASMEventHandler_18_ClientEventHandler_keyInput_KeyInputEvent.invoke(.dynamic) ~[?:?] at cpw.mods.fml.common.eventhandler.ASMEventHandler.invoke(ASMEventHandler.java:54) ~[ASMEventHandler.class:?] at cpw.mods.fml.common.eventhandler.EventBus.post(EventBus.java:140) ~[EventBus.class:?] at cpw.mods.fml.common.FMLCommonHandler.fireKeyInput(FMLCommonHandler.java:540) ~[FMLCommonHandler.class:?] at net.minecraft.client.Minecraft.runTick(Minecraft.java:1964) [Minecraft.class:?] at net.minecraft.client.Minecraft.runGameLoop(Minecraft.java:1039) [Minecraft.class:?] at net.minecraft.client.Minecraft.run(Minecraft.java:962) [Minecraft.class:?] at net.minecraft.client.main.Main.main(Main.java:164) [Main.class:?] at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_321] at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_321] at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_321] at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_321] at net.minecraft.launchwrapper.Launch.launch(Launch.java:135) [launchwrapper-1.12.jar:?] at net.minecraft.launchwrapper.Launch.main(Launch.java:28) [launchwrapper-1.12.jar:?] at net.minecraftforge.gradle.GradleStartCommon.launch(Unknown Source) [start/:?] at GradleStart.main(Unknown Source) [start/:?] Caused by: java.lang.NullPointerException at io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:824) ~[AbstractByteBuf.class:?] at dayz.network.Packet.toBytes(Packet.java:36) ~[Packet.class:?] at cpw.mods.fml.common.network.simpleimpl.SimpleIndexedCodec.encodeInto(SimpleIndexedCodec.java:11) ~[SimpleIndexedCodec.class:?] at cpw.mods.fml.common.network.simpleimpl.SimpleIndexedCodec.encodeInto(SimpleIndexedCodec.java:7) ~[SimpleIndexedCodec.class:?] at cpw.mods.fml.common.network.FMLIndexedMessageToMessageCodec.encode(FMLIndexedMessageToMessageCodec.java:51) ~[FMLIndexedMessageToMessageCodec.class:?] at io.netty.handler.codec.MessageToMessageCodec$1.encode(MessageToMessageCodec.java:67) ~[MessageToMessageCodec$1.class:?] at io.netty.handler.codec.MessageToMessageEncoder.write(MessageToMessageEncoder.java:89) ~[MessageToMessageEncoder.class:?] ... 25 more

qweqweqweqwe

  • qweqweqweqwe

    qweqweqweqwe

  • 18 Май 2022

лол, записал рандомное значение в bytebuf и ошибка пропала, видимо проверка buf != null не так работает как должна.

  • #2

buf.writeBytes(this.buf);

Это че?

Делаешь в пакете поля, которые ты будешь передавать. Добавляешь еще один конструктор, где ты эти поля задаешь перед отправкой пакета. В read/write читаешь и пишешь поля по аналогии с read/write в NBT, в server/client добавь параметр с пришедшим пакетом (у тебя он там, откуда ты вызываешь эти методы), и из него дергай значения пришедшие.

И пере-/почитай этот гайд:

[1.7-1.13.2] Пакетная система

Предисловие: Данный ресурс научит вас, как надо правильно создавать, отправлять и регистрировать пакеты. Тема со временем будет наполнятся различными статьями, которые помогут вам решить ту или иную проблему. Так же убедительная просьба обратить…

forum.mcmodding.ru

forum.mcmodding.ru

  • #3

Жостко…

 private void register(Class<? extends Packet> packet, Side side) { try { NETWORK.registerMessage(packet.newInstance(), packet, id++, side); } catch (InstantiationException | IllegalAccessException e) { e.printStackTrace(); } }

Убирайте эту гадость. Оно никогда исключениям не бросается, только если творить лютую дичь.

Чтобы не было соблазна читать данные полученного пакета через this (это не работает, но IDE может дать вредный совет), IMessageHandler лучше повесить на статический класс внутри пакета и указывать его вместе с пакетом при регистрации.

  • #4

Можно использовать ElegantNetworking, код становится сильно проще и можно забыть о русной сериализации:

public class MyPacket implements ClientToServerPacket { //my data String value; public void onReceive(EntityPlayerMP sender){ //my code } }
  • #5

Жостко…

 private void register(Class<? extends Packet> packet, Side side) { try { NETWORK.registerMessage(packet.newInstance(), packet, id++, side); } catch (InstantiationException | IllegalAccessException e) { e.printStackTrace(); } }

Убирайте эту гадость. Оно никогда исключениям не бросается, только если творить лютую дичь.

Чтобы не было соблазна читать данные полученного пакета через this (это не работает, но IDE может дать вредный совет), IMessageHandler лучше повесить на статический класс внутри пакета и указывать его вместе с пакетом при регистрации.

ide ругается

  • #6

Это че?

Делаешь в пакете поля, которые ты будешь передавать. Добавляешь еще один конструктор, где ты эти поля задаешь перед отправкой пакета. В read/write читаешь и пишешь поля по аналогии с read/write в NBT, в server/client добавь параметр с пришедшим пакетом (у тебя он там, откуда ты вызываешь эти методы), и из него дергай значения пришедшие.

И пере-/почитай этот гайд:

[1.7-1.13.2] Пакетная система

Предисловие: Данный ресурс научит вас, как надо правильно создавать, отправлять и регистрировать пакеты. Тема со временем будет наполнятся различными статьями, которые помогут вам решить ту или иную проблему. Так же убедительная просьба обратить…

forum.mcmodding.ru

forum.mcmodding.ru

да я вот открыл гайд прочитал и ctrl+c ctrl+v, почему крашит игру так и не понял

  • #7

да я вот открыл гайд прочитал и ctrl+c ctrl+v

Гайд не из самых качественных. Учат плохому. Пакеты в большинстве случае имеют только одну сторону назначения, клиен-серверная мешанина совершенно ни к чему.

  • #8

ноо почему то остальные пакеты работают :/ вообще не понимаю в чём дело

  • #9

Ничего сложного. Правильный пример.

// Заменить 12345 на ID пакета network.registerMessage(ExampleMessage.Handler.class, ExampleMessage.class, 12345, Side.SERVER);
public final class ExampleMessage implements IMessage { // Данные нашего пакета. Делаем столько полей, сколько требуется public int buttonId; public ExampleMessage() { } @Override public void fromBytes(ByteBuf buf) { // Считываем данные при получении buttonId = buf.readByte(); } @Override public void toBytes(ByteBuf buf) { // Записываем данные для отправки buf.writeByte(buttonId); } public static class Handler implements IMessageHandler<ExampleMessage, IMessage> { @Override public IMessage onMessage(ExampleMessage message, MessageContext ctx) { EntityPlayerMP player = ctx.getServerHandler().playerEntity; // тут наш код return null; } } }
  • #10

лол, записал рандомное значение в bytebuf и ошибка пропала, видимо проверка buf != null не так работает как должна.

  • #11

А можно было бы юзать EN и не париться

  • #12

А можно было бы юзать EN и не париться

Зато париться придётся с граблями 😁

  • #13

А можно было бы юзать EN и не париться

Ненавижу….

  • #14

Самая удобная система пакетов из всех, которые я видел

  • #15

Если считаешь, что говно, то аргументируй

  • #16

каждому своё бывают и любители говна

  • #17

Так ведь стандартный подход, который ты начал использовать, именно он говно
Потому что:

  • Много шаблонного кода
  • Отвлекает на постороннюю чушь, не имеющую отношения к бизнес-логике(это как раз про что этот вопрос)
    • ручная регистрация
    • ручная сериализация

Единственный плюс — отсутствие зависимостей

  • #18

Так ведь стандартный подход, который ты начал использовать, именно он говно

Каждому своё. Пакеты, это такая вещь где нужно всё тщательно контролировать.

  • Шаблонный код? Копипаст решает.
  • Ручная регистрация? Ничего сложного нет, если вы только не умудрились запилить сотню пакетов. Регистрация каждого в одну строчку, вообще ничего сложного.
  • Чтение/запись данных да, может быть сложно, но теперь явно куда лучше чем в старых версиях. Всё разложено по полочкам, логика сериализации спрятана в IMessage, а сам мод работает с пакетами как объектами.

Библиотеку свою яро имеет смысл продвигать

ленивым задницам

, которые опустились до использования ObjectInputStream

  • #19

Шаблонный код плох сам по себе, если с ним работает программист, по двум причинам:

  • трата времени
  • люди легко ошибаются

И копипаста никогда не решает проблему шаблонного кода. Копипаста может упростить написание шаблонного кода, сделать это быстрее, но не поможет не допускать ошибки или упростить поддержку.
Шаблонный код может быть в разной степени плох и это зависит от того, насколько он сложен. К примеру, сложно ошибиться при расставлении аннотаций без аргументов.
Однако шаблонный код, связанный со стандартным способом делать пакеты — сложный, и в нем достаточно мест, чтобы допускать ошибки.
Например, когда я изменяю структуру данных, то часто забываю соответственно обновить логику сериализации.

На левой картинке — пакет стандартным способом. Бизнес-логика, то ради чего ваще пишется пакет, выделена зеленым. Шум выделен красным.
На правой картинке — элегантный пакет. Шума заметно меньше.
1652969496490.png1652969378785.png

Библиотеку свою яро имеет смысл продвигать

ленивым задницам

, которые опустились до использования ObjectInputStream

EN использует не ObjectInputStream, фреймворк генерирует логику сериализации во время компиляции, тот же самый код, который вы могли бы писать сами. Могли бы, но теперь это не нужно: ваши руки и разум освобождены для более интересных и полезных задач. Это актуально для любого проекта и любого разработчика, а не только для ленивых задниц.

Последнее редактирование: 19 Май 2022

  • #20

EN использует не ObjectInputStream, фреймворк генерирует логику сериализации во время компиляции, тот же самый код, который вы могли бы писать сами.

Меня неправильно поняли. Речь о людях, которым реально лень писать свою сериализацию/десериализацию, они находят ObjectInputStream как решение это задачи, тем самым делая огромную дыру в безопасности. Им EN даже в его текущем виде — это Must have.

Почему хейтят EN? Да потому что он не такой простой, как кажется на первый взгляд. Интеграция в сборку проекта — это зло. Чем больше «магии» в сборке проекта, тем выше вероятность что сборка проекта сломается к чертям при обновлении Gradle и починить это будет непросто. Я не раз видел жалобы людей на то что у них что-то там не работает после добавления EN.

Хорошая библиотека должна быть простой как швейцарский нож: подключил в classpath и работаешь. Может тогда моё отношение к EN изменится.

Последнее редактирование: 20 Май 2022


  • Search


    • Search all Forums


    • Search this Forum


    • Search this Thread


  • Tools


    • Jump to Forum


  • #1

    May 5, 2013


    Foxbuck


    • View User Profile


    • View Posts


    • Send Message

    View Foxbuck's Profile

    • Out of the Water
    • Location:

      Cincinatti
    • Join Date:

      5/5/2013
    • Posts:

      2
    • Member Details

    Hello,

    I have been making an adventure map recently, and when I published it to LAN so my friends could play, it returned «Internal exception: java.io.IOException: Received string length longer than maximum allowed (21 > 16)»

    I am not sure what the exception means, or even what the string corresponds to. My LAN works for other maps when I publish them (though only through direct connect), but for some reason this map is buggy. Even my backups return the same error.

    When making the map, I used Single Player Commands, but when I am publishing the map I am using vanilla.
    I haven’t added anything that doesn’t exist in vanilla, and though I have used MCedit, I know that that works in vanilla as well.

    Help?

    Last edited by Foxbuck: May 5, 2013


  • #2

    May 26, 2013


    arichy2008


    • View User Profile


    • View Posts


    • Send Message

    View arichy2008's Profile

    • Out of the Water
    • Location:

      not where you are!
    • Join Date:

      11/19/2012
    • Posts:

      7
    • Minecraft:

      Pure__MC
    • Member Details

    i have the same problem and it is happening only on lan… its a hamachi server because i cant port forward yet it has worked up until i used a command block. i think it has something to do with the length of the command block that is used… and the different parameters typed being longer than 16 letters/digits. i hate this right now and i hope that it is fixed by mojang or there is a property on the server.properties list that can make it work.


  • #3

    May 29, 2013


    fghorror3


    • View User Profile


    • View Posts


    • Send Message

    View fghorror3's Profile

    • Stone Miner
    • Join Date:

      3/19/2013
    • Posts:

      93
    • Minecraft:

      redmenacenikolai
    • Member Details

    I have the same problem with one of my maps.
    I moved the map to a new world using MCedit.
    I’m going to see if that works.


  • #4

    Jun 18, 2013

    PLEASE!!! This is happening to me too! except it is 23>16 instead >;l


  • #5

    Jun 18, 2013


    tsteele93


    • View User Profile


    • View Posts


    • Send Message

    View tsteele93's Profile

    • Tree Puncher
    • Join Date:

      5/17/2013
    • Posts:

      33
    • Minecraft:

      tsteele937
    • Member Details

    PLEASE!!! This is happening to me too! except it is 23>16 instead >;l

    I have done some research and it appears to be your user name. I get 17>16 and my user name (e-mail address) is 17 characters (including the @aol.com) Since minecraft has left user names and gone to e-mail, apparently most e-mails are too long with the max being 16 characters. I’m going to see if there is a way to log in with just my user name.

    So far it appears to be MY account that is too long, and not my sons acct. I purchased three accounts so my son, me and a visiting friend would all be able to play together legally and easily. So it is rather frustrating that some sort of copy protection scheme is causing us not to be able to play right now because our user names must be less than 16 characters (including email address info)

    I tried logging in to minecraft.net and changing my email to a shorter one — some throwaway like [email protected] or something shorter than 16 characters. I logged into mojang and clicked the button asking them to send me an e-mail on how to change my e-mail for the game and it said they send it — but I haven’t gotten anything from Mojang. I checked my spam folder too.

    I am THINKING that if I could change my account name to something shorter than 16 characters it might solve the issue.

    TS

  • To post a comment, please login.

Posts Quoted:

Reply

Clear All Quotes



  • Search


    • Search all Forums


    • Search this Forum


    • Search this Thread


  • Tools


    • Jump to Forum


  • #1

    May 5, 2013


    Foxbuck


    • View User Profile


    • View Posts


    • Send Message

    View Foxbuck's Profile

    • Out of the Water
    • Location:

      Cincinatti
    • Join Date:

      5/5/2013
    • Posts:

      2
    • Member Details

    Hello,

    I have been making an adventure map recently, and when I published it to LAN so my friends could play, it returned «Internal exception: java.io.IOException: Received string length longer than maximum allowed (21 > 16)»

    I am not sure what the exception means, or even what the string corresponds to. My LAN works for other maps when I publish them (though only through direct connect), but for some reason this map is buggy. Even my backups return the same error.

    When making the map, I used Single Player Commands, but when I am publishing the map I am using vanilla.
    I haven’t added anything that doesn’t exist in vanilla, and though I have used MCedit, I know that that works in vanilla as well.

    Help?

    Last edited by Foxbuck: May 5, 2013


  • #2

    May 26, 2013


    arichy2008


    • View User Profile


    • View Posts


    • Send Message

    View arichy2008's Profile

    • Out of the Water
    • Location:

      not where you are!
    • Join Date:

      11/19/2012
    • Posts:

      7
    • Minecraft:

      Pure__MC
    • Member Details

    i have the same problem and it is happening only on lan… its a hamachi server because i cant port forward yet it has worked up until i used a command block. i think it has something to do with the length of the command block that is used… and the different parameters typed being longer than 16 letters/digits. i hate this right now and i hope that it is fixed by mojang or there is a property on the server.properties list that can make it work.


  • #3

    May 29, 2013


    fghorror3


    • View User Profile


    • View Posts


    • Send Message

    View fghorror3's Profile

    • Stone Miner
    • Join Date:

      3/19/2013
    • Posts:

      93
    • Minecraft:

      redmenacenikolai
    • Member Details

    I have the same problem with one of my maps.
    I moved the map to a new world using MCedit.
    I’m going to see if that works.


  • #4

    Jun 18, 2013

    PLEASE!!! This is happening to me too! except it is 23>16 instead >;l


  • #5

    Jun 18, 2013


    tsteele93


    • View User Profile


    • View Posts


    • Send Message

    View tsteele93's Profile

    • Tree Puncher
    • Join Date:

      5/17/2013
    • Posts:

      33
    • Minecraft:

      tsteele937
    • Member Details

    PLEASE!!! This is happening to me too! except it is 23>16 instead >;l

    I have done some research and it appears to be your user name. I get 17>16 and my user name (e-mail address) is 17 characters (including the @aol.com) Since minecraft has left user names and gone to e-mail, apparently most e-mails are too long with the max being 16 characters. I’m going to see if there is a way to log in with just my user name.

    So far it appears to be MY account that is too long, and not my sons acct. I purchased three accounts so my son, me and a visiting friend would all be able to play together legally and easily. So it is rather frustrating that some sort of copy protection scheme is causing us not to be able to play right now because our user names must be less than 16 characters (including email address info)

    I tried logging in to minecraft.net and changing my email to a shorter one — some throwaway like [email protected] or something shorter than 16 characters. I logged into mojang and clicked the button asking them to send me an e-mail on how to change my e-mail for the game and it said they send it — but I haven’t gotten anything from Mojang. I checked my spam folder too.

    I am THINKING that if I could change my account name to something shorter than 16 characters it might solve the issue.

    TS

  • To post a comment, please login.

Posts Quoted:

Reply

Clear All Quotes



  • Search


    • Search all Forums


    • Search this Forum


    • Search this Thread


  • Tools


    • Jump to Forum


  • #1

    May 31, 2018

    [21:58:27] [Netty Epoll Server IO #1/INFO] [neid]: Patching class: «net.minecraft.network.play.server.SPacketBlockAction» with Transformer Group: «TransformerGroupBlockHardcoredConstants»
    [21:58:35] [User Authenticator #1/INFO] [net.minecraft.server.network.NetHandlerLoginServer]: UUID of player MAPsterxo is 6053c471-2528-45b6-a232-6fede867e610
    [21:58:35] [Netty Epoll Server IO #2/INFO] [FML]: Client protocol version 2
    [21:58:35] [Netty Epoll Server IO #2/INFO] [FML]: Client attempting to join with 259 mods : [email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected]@[email protected],[email protected],[email protected]_1.12-d4e654e,[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected]+release.110.b4fac73,[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],integ[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected]@[email protected]@[email protected]@[email protected]@[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected] 2.6.1,[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],opencomputers|[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected]
    [21:58:35] [Netty Epoll Server IO #2/INFO] [FML]: Attempting connection with missing mods [bedpatch] at CLIENT
    [21:58:35] [Netty Epoll Server IO #2/INFO] [journeymap]: CLIENT
    [21:58:52] [Server thread/INFO] [FML]: [Server thread] Server side modded connection established
    [21:58:52] [Server thread/INFO] [mcjty.lib.varia.Logging]: SMP: Sync dimensions to client
    [21:58:52] [Server thread/ERROR] [cyclicmagic]: Data not found for MAPsterxo
    [21:58:52] [Server thread/INFO] [net.minecraft.server.management.PlayerList]: MAPsterxo[/37.201.194.103:50650] logged in with entity id 2995 at (-322.5, 71.0, 509.5)
    [21:58:52] [Server thread/INFO] [net.minecraft.server.dedicated.DedicatedServer]: MAPsterxo joined the game
    [21:58:52] [Server thread/INFO] [journeymap]: MAPsterxo joining dimension 0
    [21:58:52] [Server thread/ERROR] [FML]: FMLIndexedMessageCodec exception caught
    io.netty.handler.codec.EncoderException: java.lang.RuntimeException: Undefined discriminator for message type DimensionPermissionPacket in channel jm_dim_permission
    at io.netty.handler.codec.MessageToMessageEncoder.write(MessageToMessageEncoder.java:106) ~[minecraft_server.1.12.2.jar:?]
    at io.netty.handler.codec.MessageToMessageCodec.write(MessageToMessageCodec.java:116) ~[minecraft_server.1.12.2.jar:?]
    at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:738) ~[minecraft_server.1.12.2.jar:?]
    at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:801) ~[minecraft_server.1.12.2.jar:?]
    at io.netty.channel.AbstractChannelHandlerContext.write(AbstractChannelHandlerContext.java:814) ~[minecraft_server.1.12.2.jar:?]
    at io.netty.channel.AbstractChannelHandlerContext.writeAndFlush(AbstractChannelHandlerContext.java:794) ~[minecraft_server.1.12.2.jar:?]
    at io.netty.channel.AbstractChannelHandlerContext.writeAndFlush(AbstractChannelHandlerContext.java:831) ~[minecraft_server.1.12.2.jar:?]
    at io.netty.channel.DefaultChannelPipeline.writeAndFlush(DefaultChannelPipeline.java:1032) ~[minecraft_server.1.12.2.jar:?]
    at io.netty.channel.AbstractChannel.writeAndFlush(AbstractChannel.java:296) ~[minecraft_server.1.12.2.jar:?]
    at net.minecraftforge.fml.common.network.simpleimpl.SimpleNetworkWrapper.sendTo(SimpleNetworkWrapper.java:250) [SimpleNetworkWrapper.class:?]
    at journeymap.common.network.PacketHandler.sendDimensionPacketToPlayer(PacketHandler.java:60) [PacketHandler.class:1.12.2-5.5.2]
    at journeymap.server.events.ForgeEvents.on(ForgeEvents.java:68) [ForgeEvents.class:1.12.2-5.5.2]
    at net.minecraftforge.fml.common.eventhandler.ASMEventHandler_2054_ForgeEvents_on_EntityJoinWorldEvent.invoke(.dynamic) [?:?]
    at net.minecraftforge.fml.common.eventhandler.ASMEventHandler.invoke(ASMEventHandler.java:90) [ASMEventHandler.class:?]
    at net.minecraftforge.fml.common.eventhandler.EventBus.post(EventBus.java:182) [EventBus.class:?]
    at net.minecraft.world.World.func_72838_d(World.java:1205) [amu.class:?]at net.minecraft.world.WorldServer.func_72838_d(WorldServer.java:1058) [oo.class:?]
    at net.minecraft.server.management.PlayerList.func_72377_c(PlayerList.java:376) [pl.class:?]
    at net.minecraft.server.management.PlayerList.initializeConnectionToPlayer(PlayerList.java:165) [pl.class:?]
    at shadows.fastbench.net.HijackedDedicatedPlayerList.initializeConnectionToPlayer(HijackedDedicatedPlayerList.java:19) [HijackedDedicatedPlayerList.class:?]
    at net.minecraftforge.fml.common.network.handshake.NetworkDispatcher.completeServerSideConnection(NetworkDispatcher.java:256) [NetworkDispatcher.class:?]
    at net.minecraftforge.fml.common.network.handshake.NetworkDispatcher.access$100(NetworkDispatcher.java:72) [NetworkDispatcher.class:?]
    at net.minecraftforge.fml.common.network.handshake.NetworkDispatcher$1.func_73660_a(NetworkDispatcher.java:205) [NetworkDispatcher$1.class:?]
    at net.minecraft.network.NetworkManager.func_74428_b(NetworkManager.java:285) [gw.class:?]
    at net.minecraft.network.NetworkSystem.func_151269_c(NetworkSystem.java:180) [oz.class:?]
    at net.minecraft.server.MinecraftServer.func_71190_q(MinecraftServer.java:790) [MinecraftServer.class:?]
    at net.minecraft.server.dedicated.DedicatedServer.func_71190_q(DedicatedServer.java:396) [nz.class:?]
    at net.minecraft.server.MinecraftServer.func_71217_p(MinecraftServer.java:668) [MinecraftServer.class:?]
    at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:526) [MinecraftServer.class:?]
    at java.lang.Thread.run(Thread.java:748) [?:1.8.0_171]
    Caused by: java.lang.RuntimeException: Undefined discriminator for message type DimensionPermissionPacket in channel jm_dim_permission
    at net.minecraftforge.fml.common.network.FMLIndexedMessageToMessageCodec.encode(FMLIndexedMessageToMessageCodec.java:72) ~[FMLIndexedMessageToMessageCodec.class:?]
    at io.netty.handler.codec.MessageToMessageCodec$1.encode(MessageToMessageCodec.java:67) ~[minecraft_server.1.12.2.jar:?]
    at io.netty.handler.codec.MessageToMessageEncoder.write(MessageToMessageEncoder.java:88) ~[minecraft_server.1.12.2.jar:?]
    … 29 more
    [21:58:52] [Server thread/INFO] [EnderCore]: Sending server configs to client for com.enderio.core.common.config.ConfigHandler
    [21:58:52] [Netty Epoll Server IO #2/ERROR] [FML]: NetworkDispatcher exception
    io.netty.handler.codec.EncoderException: String too big (was 36483 bytes encoded, max 32767)
    at net.minecraft.network.PacketBuffer.func_180714_a(PacketBuffer.java:400) ~[gy.class:?]
    at net.minecraft.network.PacketBuffer.func_179256_a(PacketBuffer.java:181) ~[gy.class:?]
    at net.minecraft.network.play.server.SPacketChat.func_148840_b(SourceFile:35) ~[in.class:?]
    at net.minecraft.network.NettyPacketEncoder.encode(NettyPacketEncoder.java:51) ~[ha.class:?]
    at net.minecraft.network.NettyPacketEncoder.encode(NettyPacketEncoder.java:12) ~[ha.class:?]
    at io.netty.handler.codec.MessageToByteEncoder.write(MessageToByteEncoder.java:107) ~[minecraft_server.1.12.2.jar:?]
    at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:738) ~[minecraft_server.1.12.2.jar:?]
    at io.netty.channel.AbstractChannelHandlerContext.invokeWrite(AbstractChannelHandlerContext.java:730) ~[minecraft_server.1.12.2.jar:?]
    at io.netty.channel.AbstractChannelHandlerContext.write(AbstractChannelHandlerContext.java:816) ~[minecraft_server.1.12.2.jar:?]
    at io.netty.channel.AbstractChannelHandlerContext.write(AbstractChannelHandlerContext.java:723) ~[minecraft_server.1.12.2.jar:?]
    at net.minecraftforge.fml.common.network.handshake.NetworkDispatcher.write(NetworkDispatcher.java:549) ~[NetworkDispatcher.class:?]
    at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:738) ~[minecraft_server.1.12.2.jar:?]
    at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:801) ~[minecraft_server.1.12.2.jar:?]
    at io.netty.channel.AbstractChannelHandlerContext.write(AbstractChannelHandlerContext.java:814) ~[minecraft_server.1.12.2.jar:?]
    at io.netty.channel.AbstractChannelHandlerContext.writeAndFlush(AbstractChannelHandlerContext.java:794) ~[minecraft_server.1.12.2.jar:?]
    at io.netty.channel.AbstractChannelHandlerContext.writeAndFlush(AbstractChannelHandlerContext.java:831) ~[minecraft_server.1.12.2.jar:?]
    at io.netty.channel.DefaultChannelPipeline.writeAndFlush(DefaultChannelPipeline.java:1032) ~[minecraft_server.1.12.2.jar:?]
    at io.netty.channel.AbstractChannel.writeAndFlush(AbstractChannel.java:296) ~[minecraft_server.1.12.2.jar:?]
    at net.minecraft.network.NetworkManager$4.run(NetworkManager.java:245) [gw$4.class:?]
    at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:163) [minecraft_server.1.12.2.jar:?]
    at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:403) [minecraft_server.1.12.2.jar:?]
    at io.netty.channel.epoll.EpollEventLoop.run(EpollEventLoop.java:304) [minecraft_server.1.12.2.jar:?]
    at io.netty.util.concurrent.SingleThreadEventExecutor$5.run(SingleThreadEventExecutor.java:858) [minecraft_server.1.12.2.jar:?]
    at java.lang.Thread.run(Thread.java:748) [?:1.8.0_171]
    [21:58:52] [Server thread/INFO] [wizardry]: Sending module list to MAPsterxo
    [21:58:52] [Server thread/INFO] [mcjty.lib.varia.Logging]: SMP: Player logged in: Sync diminfo to clients
    [21:58:52] [Server thread/INFO] [mcjty.lib.varia.Logging]: Send dimlet rules to the client
    [21:58:52] [Server thread/INFO] [mcjty.lib.varia.Logging]: Rules packet size: 5779 of 8192
    [21:58:53] [Server thread/INFO] [Actually Additions]: Sending Player Data to player MAPsterxo with UUID 6053c471-2528-45b6-a232-6fede867e610.
    [21:58:53] [Server thread/INFO] [Mekanism]: Sent config to ‘MAPsterxo.’
    [21:58:53] [Server thread/INFO] [journeymap]: Sending log in packet.
    [21:58:53] [Server thread/INFO] [STDOUT]: [com.blamejared.initialinventory.events.CommonEventHandler:lambda$playerLogin$0:28]: [email protected]:-1
    [21:58:53] [Server thread/INFO] [Astral Sorcery]: [AstralSorcery] Synchronizing configuration to MAPsterxo
    [21:58:54] [Server thread/INFO] [net.minecraft.network.NetHandlerPlayServer]: MAPsterxo lost connection: Internal Exception: io.netty.handler.codec.EncoderException: String too big (was 36483 bytes encoded, max 32767

    [21:58:54] [Server thread/INFO] [net.minecraft.server.dedicated.DedicatedServer]: MAPsterxo left the game
    [21:58:54] [Server thread/WARN] [twilightforest]: Mod was keeping bauble items in reserve for player %s but they logged out! Items are being dropped.
    >

    Hello everyone,

    I want to run a minecraft server running the modpack «all the mods 3», version 5.9.6b and MC version 1.12.2. Unfortunately all players trying to connect get disconnected (see log above)

    I do no understand the error messages, I just see that lots of exceptions get thrown and some string (what string ? ) is too big. I highlighted all lines that I think are important in the above log.

    Let me say Two things: This server is set up completely new. Such string errors occured in the past from griefers using a hacked client and placing «hacked signs» that contained too many characters. This can not be the case !

    And the log says that the client is missing «bedpatch». This is not true, I checked my client and bedpatch is checked !

    And let me add one last thing before I start the technical description: I ran for several months an FTB:infinity evolved server. So I know that minecraft works ! It seems to be connected to ATM3

    Changes I did to ATM3:

    • disabled Draconic evolution (by naming the .jar to .jar.disabled in the mods folder)
    • disabled terraqueous
    • disabled AbyssalCraft and Abyssalcraft Integration
    • disabled Plants (mod)
    • disabled taint in Thaumcraft (by changing the config)
    • disabled several biomes in biomesoplenty

    Technical server info (it’s a vserver):

    12GB ram

    Intel(R) Xeon(R) CPU E5-2620 v3 @ 2.40GHz

    Ubuntu 16.04

    java 1.8.0_171 ( just updated )

    I am really mad right now because I can’t figure out what’s wrong. I would greatly appreciate any help or ideas what to do.

    Best regards

    MAPster


  • #2

    May 31, 2018

    update: When launching the ATM3 server in standard configuration I can connect. The connection still throws lots of errors, but the server then runs smoothly and I can walk around and do stuff.
    I will keep this updated as I progress.

    Best regards

    MAPster

  • To post a comment, please login.

Posts Quoted:

Reply

Clear All Quotes



  • Search


    • Search all Forums


    • Search this Forum


    • Search this Thread


  • Tools


    • Jump to Forum


  • #1

    May 5, 2013


    Foxbuck


    • View User Profile


    • View Posts


    • Send Message

    View Foxbuck's Profile

    • Out of the Water
    • Location:

      Cincinatti
    • Join Date:

      5/5/2013
    • Posts:

      2
    • Member Details

    Hello,

    I have been making an adventure map recently, and when I published it to LAN so my friends could play, it returned «Internal exception: java.io.IOException: Received string length longer than maximum allowed (21 > 16)»

    I am not sure what the exception means, or even what the string corresponds to. My LAN works for other maps when I publish them (though only through direct connect), but for some reason this map is buggy. Even my backups return the same error.

    When making the map, I used Single Player Commands, but when I am publishing the map I am using vanilla.
    I haven’t added anything that doesn’t exist in vanilla, and though I have used MCedit, I know that that works in vanilla as well.

    Help?

    Last edited by Foxbuck: May 5, 2013


  • #2

    May 26, 2013


    arichy2008


    • View User Profile


    • View Posts


    • Send Message

    View arichy2008's Profile

    • Out of the Water
    • Location:

      not where you are!
    • Join Date:

      11/19/2012
    • Posts:

      7
    • Minecraft:

      Pure__MC
    • Member Details

    i have the same problem and it is happening only on lan… its a hamachi server because i cant port forward yet it has worked up until i used a command block. i think it has something to do with the length of the command block that is used… and the different parameters typed being longer than 16 letters/digits. i hate this right now and i hope that it is fixed by mojang or there is a property on the server.properties list that can make it work.


  • #3

    May 29, 2013


    fghorror3


    • View User Profile


    • View Posts


    • Send Message

    View fghorror3's Profile

    • Stone Miner
    • Join Date:

      3/19/2013
    • Posts:

      93
    • Minecraft:

      redmenacenikolai
    • Member Details

    I have the same problem with one of my maps.
    I moved the map to a new world using MCedit.
    I’m going to see if that works.


  • #4

    Jun 18, 2013

    PLEASE!!! This is happening to me too! except it is 23>16 instead >;l


  • #5

    Jun 18, 2013


    tsteele93


    • View User Profile


    • View Posts


    • Send Message

    View tsteele93's Profile

    • Tree Puncher
    • Join Date:

      5/17/2013
    • Posts:

      33
    • Minecraft:

      tsteele937
    • Member Details

    PLEASE!!! This is happening to me too! except it is 23>16 instead >;l

    I have done some research and it appears to be your user name. I get 17>16 and my user name (e-mail address) is 17 characters (including the @aol.com) Since minecraft has left user names and gone to e-mail, apparently most e-mails are too long with the max being 16 characters. I’m going to see if there is a way to log in with just my user name.

    So far it appears to be MY account that is too long, and not my sons acct. I purchased three accounts so my son, me and a visiting friend would all be able to play together legally and easily. So it is rather frustrating that some sort of copy protection scheme is causing us not to be able to play right now because our user names must be less than 16 characters (including email address info)

    I tried logging in to minecraft.net and changing my email to a shorter one — some throwaway like [email protected] or something shorter than 16 characters. I logged into mojang and clicked the button asking them to send me an e-mail on how to change my e-mail for the game and it said they send it — but I haven’t gotten anything from Mojang. I checked my spam folder too.

    I am THINKING that if I could change my account name to something shorter than 16 characters it might solve the issue.

    TS

  • To post a comment, please login.

Posts Quoted:

Reply

Clear All Quotes



  • Search


    • Search all Forums


    • Search this Forum


    • Search this Thread


  • Tools


    • Jump to Forum


  • #1

    May 5, 2013


    Foxbuck


    • View User Profile


    • View Posts


    • Send Message

    View Foxbuck's Profile

    • Out of the Water
    • Location:

      Cincinatti
    • Join Date:

      5/5/2013
    • Posts:

      2
    • Member Details

    Hello,

    I have been making an adventure map recently, and when I published it to LAN so my friends could play, it returned «Internal exception: java.io.IOException: Received string length longer than maximum allowed (21 > 16)»

    I am not sure what the exception means, or even what the string corresponds to. My LAN works for other maps when I publish them (though only through direct connect), but for some reason this map is buggy. Even my backups return the same error.

    When making the map, I used Single Player Commands, but when I am publishing the map I am using vanilla.
    I haven’t added anything that doesn’t exist in vanilla, and though I have used MCedit, I know that that works in vanilla as well.

    Help?

    Last edited by Foxbuck: May 5, 2013


  • #2

    May 26, 2013


    arichy2008


    • View User Profile


    • View Posts


    • Send Message

    View arichy2008's Profile

    • Out of the Water
    • Location:

      not where you are!
    • Join Date:

      11/19/2012
    • Posts:

      7
    • Minecraft:

      Pure__MC
    • Member Details

    i have the same problem and it is happening only on lan… its a hamachi server because i cant port forward yet it has worked up until i used a command block. i think it has something to do with the length of the command block that is used… and the different parameters typed being longer than 16 letters/digits. i hate this right now and i hope that it is fixed by mojang or there is a property on the server.properties list that can make it work.


  • #3

    May 29, 2013


    fghorror3


    • View User Profile


    • View Posts


    • Send Message

    View fghorror3's Profile

    • Stone Miner
    • Join Date:

      3/19/2013
    • Posts:

      93
    • Minecraft:

      redmenacenikolai
    • Member Details

    I have the same problem with one of my maps.
    I moved the map to a new world using MCedit.
    I’m going to see if that works.


  • #4

    Jun 18, 2013

    PLEASE!!! This is happening to me too! except it is 23>16 instead >;l


  • #5

    Jun 18, 2013


    tsteele93


    • View User Profile


    • View Posts


    • Send Message

    View tsteele93's Profile

    • Tree Puncher
    • Join Date:

      5/17/2013
    • Posts:

      33
    • Minecraft:

      tsteele937
    • Member Details

    PLEASE!!! This is happening to me too! except it is 23>16 instead >;l

    I have done some research and it appears to be your user name. I get 17>16 and my user name (e-mail address) is 17 characters (including the @aol.com) Since minecraft has left user names and gone to e-mail, apparently most e-mails are too long with the max being 16 characters. I’m going to see if there is a way to log in with just my user name.

    So far it appears to be MY account that is too long, and not my sons acct. I purchased three accounts so my son, me and a visiting friend would all be able to play together legally and easily. So it is rather frustrating that some sort of copy protection scheme is causing us not to be able to play right now because our user names must be less than 16 characters (including email address info)

    I tried logging in to minecraft.net and changing my email to a shorter one — some throwaway like [email protected] or something shorter than 16 characters. I logged into mojang and clicked the button asking them to send me an e-mail on how to change my e-mail for the game and it said they send it — but I haven’t gotten anything from Mojang. I checked my spam folder too.

    I am THINKING that if I could change my account name to something shorter than 16 characters it might solve the issue.

    TS

  • To post a comment, please login.

Posts Quoted:

Reply

Clear All Quotes


Статус темы:

Закрыта.
  1. После написания команды для перевода и текст, который необходимо перевести

    Выкидывает из сервера и в консоль выдает ошибку: io.netty.handler.codec.EncoderException: String too big (was 146952 bytes encoded, max 32767)

    С чем это связано?

    Код перевода:

        public static String translate(String langFrom, String langTo, String text) throws IOException {
            String urlStr = "https://script.google.com/macros/s/AKfycbzhi3gpfD8b5PZ2pWS0pGCFOU0jF9vxJL2d-G9HQBTrZSfT9u4/exec" +
                    "?q=" + encode(text, StandardCharsets.UTF_8.toString()) + "&target=" + langTo + "&source=" + langFrom;
            URL url = new URL(urlStr);
            StringBuilder response = new StringBuilder();
            HttpURLConnection con = (HttpURLConnection) url.openConnection();
            con.setRequestProperty("User-Agent", "Mozilla/5.0");
            BufferedReader in = new BufferedReader(new InputStreamReader(con.getInputStream()));
            String inputLine;
            while ((inputLine = in.readLine()) != null) {
                response.append(inputLine);
            }
            in.close();
            return response.toString();
        }

    Код использования:

                func = (sender, args) -> {
                    final List<ECommand> cmds = new ArrayList<>(instance.getRegisteredCommands());
    
                    cmds.add(this);
    
                    if (!(sender instanceof Player)) return;
    
                    Player p = (Player) sender;
    
                    UUID id = p.getUniqueId();
    
                    StringBuilder sb = new StringBuilder();
                    for (int i = 0; i < args.length; i++) sb.append(args[i]).append(' ');
                    if(sb.length() < 3) {
                        send(sender, translateAlternateColorCodes('&', "&cПереведенный текст не может быть меньше 3 символов"));
                        return;
                    }
    
                    if (sender.hasPermission(getPermission()) || sender.isOp()) {
                        ru.remove(id);
                        en.add(id);
                        send(sender, translateAlternateColorCodes('&', "&c&l[TRANSLATOR] &fПереведенный текст: " + translate("en", "ru", sb.toString())));
                        send(sender, translateAlternateColorCodes('&', "&c&l[TRANSLATOR] &fЗапрос на перевод текста: &9(" + sb.toString() + ")"));
                        return;
                    }
                    send(sender, translateAlternateColorCodes('&', getString("NotHavePermission")));
                };

    if (sender.hasPermission(getPermission()) || sender.isOp()) {
    ru.remove(id);
    en.add(id);
    send(sender, translateAlternateColorCodes(‘&’, «&c&l[TRANSLATOR] &fПереведенный текст: » + translate(«en», «ru», sb.toString())));
    send(sender, translateAlternateColorCodes(‘&’, «&c&l[TRANSLATOR] &fЗапрос на перевод текста: &9(» + sb.toString() + «)»));
    return;
    }

  2. Быстрая раскрутка сервера Minecraft

  3. Ission
    Старожил
    Девелопер
    Пользователь

    Баллы:
    173
    Skype:
    lokivava

    С тем, что «String too big (was 146952 bytes encoded, max 32767)». То есть строка текста слишком длинная.

  4. У меня идентичный метод в переводе. Что не так?

  5. Почему он выводит какую-то фигню вместо текста?

    Часть из этого, так как не дает залить полностью

    [19:10:42] [Server thread/INFO]: <!DOCTYPE html><html lang="ru"> <head> <meta charset="utf-8"> <meta content="width=300, initial-scale=1" name="viewport"> <meta name="google-site-verification" content="LrdTUW9psUAMbh4Ia074-BPEVmcpBxF6Gwf0MSgQXZs"> <title>Вход – Google Аккаунты</title> <style> @font-face { font-family: 'Open Sans'; font-style: normal; font-weight: 300; src: url(//fonts.gstatic.com/s/opensans/v15/mem5YaGs126MiZpBA-UN_r8OVuhs.ttf) format('truetype');}@font-face { font-family: 'Open Sans'; font-style: normal; font-weight: 400; src: url(//fonts.gstatic.com/s/opensans/v15/mem8YaGs126MiZpBA-UFUZ0e.ttf) format('truetype');} </style> <style> h1, h2 { -webkit-animation-duration: 0.1s; -webkit-animation-name: fontfix; -webkit-animation-iteration-count: 1; -webkit-animation-timing-function: linear; -webkit-animation-delay: 0; } @-webkit-keyframes fontfix { from { opacity: 1; } to { opacity: 1; } } </style><style> html, body { font-family: Arial, sans-serif; background: #fff; margin: 0; padding: 0; border: 0; position: absolute; height: 100%; min-width: 100%; font-size: 13px; color: #404040; direction: ltr; -webkit-text-size-adjust: none; } button, input[type=button], input[type=submit] { font-family: Arial, sans-serif; font-size: 13px; } a, a:hover, a:visited { color: #427fed; cursor: pointer; text-decoration: none; } a:hover { text-decoration: underline; } h1 { font-size: 20px; color: #262626; margin: 0 0 15px; font-weight: normal; } h2 { font-size: 14px; color: #262626; margin: 0 0 15px; font-weight: bold; } input[type=email], input[type=number], input[type=password], input[type=tel], input[type=text], input[type=url] { -moz-appearance: none; -webkit-appearance: none; appearance: none; display: inline-block; height: 36px; padding: 0 8px; margin: 0; background: #fff; border: 1px solid #d9d9d9; border-top: 1px solid #c0c0c0; -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box; -moz-border-radius: 1px; -webkit-border-radius: 1px; border-radius: 1px; font-size: 15px; color: #404040; } input[type=email]:hover, input[type=number]:hover, input[type=password]:hover, input[type=tel]:hover, input[type=text]:hover, input[type=url]:hover { border: 1px solid #b9b9b9; border-top: 1px solid #a0a0a0; -moz-box-shadow: inset 0 1px 2px rgba(0,0,0,0.1); -webkit-box-shadow: inset 0 1px 2px rgba(0,0,0,0.1); box-shadow: inset 0 1px 2px rgba(0,0,0,0.1); } input[type=email]:focus, input[type=number]:focus, input[type=password]:focus, input[type=tel]:focus, input[type=text]:focus, input[type=url]:focus { outline: none; border: 1px solid #4d90fe; -moz-box-shadow: inset 0 1px 2px rgba(0,0,0,0.3); -webkit-box-shadow: inset 0 1px 2px rgba(0,0,0,0.3); box-shadow: inset 0 1px 2px rgba(0,0,0,0.3); } input[type=checkbox], input[type=radio] { -webkit-appearance: none; display: inline-block; width: 13px; height: 13px; margin: 0; cursor: pointer; vertical-align: bottom; background: #fff; border: 1px solid #c6c6c6; -moz-border-radius: 1px; -webkit-border-radius: 1px; border-radius: 1px; -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box; position: relative; } input[type=checkbox]:active, input[type=radio]:active { background: #ebebeb; } input[type=checkbox]:hover { border-color: #c6c6c6; -moz-box-shadow: inset 0 1px 2px rgba(0,0,0,0.1); -webkit-box-shadow: inset 0 1px 2px rgba(0,0,0,0.1); box-shadow: inset 0 1px 2px rgba(0,0,0,0.1); } input[type=radio] { -moz-border-radius: 1em; -webkit-border-radius: 1em; border-radius: 1em; width: 15px; height: 15px; } input[type=checkbox]:checked, input[type=radio]:checked { background: #fff; } input[type=radio]:checked::after { content: ''; display: block; position: relative; top: 3px; left: 3px; width: 7px; height: 7px; background: #666; -moz-border-radius: 1em; -webkit-border-radius: 1em; border-radius: 1em; } input[type=checkbox]:checked::after { content: url(https://ssl.gstatic.com/ui/v1/menu/checkmark.png); display: block; position: absolute; top: -6px; left: -5px; } input[type=checkbox]:focus { outline: none; border-color: #4d90fe; } .stacked-label { display: block; font-weight: bold; margin: .5em 0; } .hidden-label { position: absolute !important; clip: rect(1px 1px 1px 1px); /* IE6, IE7 */ clip: rect(1px, 1px, 1px, 1px); height: 0px; width: 0px; overflow: hidden; visibility: hidden; } input[type=checkbox].form-error, input[type=email].form-error, input[type=number].form-error, input[type=password].form-error, input[type=text].form-error, input[type=tel].form-error, input[type=url].form-error { border: 1px solid #dd4b39; } .error-msg { margin: .5em 0; display: block; color: #dd4b39; line-height: 17px; } .help-link { background: #dd4b39; padding: 0 5px; color: #fff; font-weight: bold; display: inline-block; -moz-border-radius: 1em; -webkit-border-radius: 1em; border-radius: 1em; text-decoration: none; position: relative; top: 0px; } .help-link:visited { color: #fff; } .help-link:hover { color: #fff; background: #c03523; text-decoration: none; } .help-link:active { opacity: 1; background: #ae2817; } .wrapper { position: relative; min-height: 100%; } .content { padding: 0 44px; } .main { padding-bottom: 100px; } /* For modern browsers */ .clearfix:before, .clearfix:after { content: ""; display: table; } .clearfix:after { clear: both; } /* For IE 6/7 (trigger hasLayout) */ .clearfix { zoom:1; } .google-header-bar { height: 71px; border-bottom: 1px solid #e5e5e5; overflow: hidden; } .header .logo { background-image: url(https://ssl.gstatic.com/accounts/ui/logo_1x.png); background-size: 116px 38px; background-repeat: no-repeat; margin: 17px 0 0; float: left; height: 38px; width: 116px; } .header .logo-w { background-image: url(https://ssl.gstatic.com/images/branding/googlelogo/1x/googlelogo_color_112x36dp.png); background-size: 112px 36px; margin: 21px 0 0; } .header .secondary-link { margin: 28px 0 0; float: right; } .header .secondary-link a { font-weight: normal; } .google-header-bar.centered { border: 0; height: 108px; } .google-header-bar.centered .header .logo { float: none; margin: 40px auto 30px; display: block; } .google-header-bar.centered .header .secondary-link { display: none } .google-footer-bar { position: absolute; bottom: 0; height: 35px; width: 100%; border-top: 1px solid #e5e5e5; overflow: hidden; } .footer { padding-top: 7px; font-size: .85em; white-space: nowrap; line-height: 0; } .footer ul { float: left; max-width: 80%; min-height: 16px; padding: 0; } .footer ul li { color: #737373; display: inline; padding: 0; padding-right: 1.5em; } .footer a { color: #737373; } .lang-chooser-wrap { float: right; display: inline; } .lang-chooser-wrap img { vertical-align: top; } .lang-chooser { font-size: 13px; height: 24px; line-height: 24px; } .lang-chooser option { font-size: 13px; line-height: 24px; } .hidden { height: 0px; width: 0px; overflow: hidden; visibility: hidden; display: none !important; } .banner { text-align: center; } .card { background-color: #f7f7f7; padding: 20px 25px 30px; margin: 0 auto 25px; width: 304px; -moz-border-radius: 2px; -webkit-border-radius: 2px; border-radius: 2px; -moz-box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3); -webkit-box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3); box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3); } .card > *:first-child { margin-top: 0; } .rc-button, .rc-button:visited { display: inline-block; min-width: 46px; text-align: center; color: #444; font-size: 14px; font-weight: 700; height: 36px; padding: 0 8px; line-height: 36px; -moz-border-radius: 3px; -webkit-border-radius: 3px; border-radius: 3px; -o-transition: all 0.218s; -moz-transition: all 0.218s; -webkit-transition: all 0.218s; transition: all 0.218s; border: 1px solid #dcdcdc; background-color: #f5f5f5; background-image: -webkit-linear-gradient(top,#f5f5f5,#f1f1f1); background-image: -
  6. можешь объясниться для чего ты отправляешь GET запрос на этот URI?

    пс
    https://cloud.google.com/translate/docs/reference/rest/v2/translate

  7. на дату старайся поглядывать прежде чем что-то копировать))
    Asked 9 years, 4 months ago
    Ответы протухли уже

    пс
    обращайся сначала к первоисточнику, в твоем случае документация от самого гугла, там всё норм расписано
    upload_2021-4-7_19-58-8.png

Статус темы:

Закрыта.

Поделиться этой страницей

Русское сообщество Bukkit


  • Search


    • Search all Forums


    • Search this Forum


    • Search this Thread


  • Tools


    • Jump to Forum


  • #1

    May 31, 2018

    [21:58:27] [Netty Epoll Server IO #1/INFO] [neid]: Patching class: «net.minecraft.network.play.server.SPacketBlockAction» with Transformer Group: «TransformerGroupBlockHardcoredConstants»
    [21:58:35] [User Authenticator #1/INFO] [net.minecraft.server.network.NetHandlerLoginServer]: UUID of player MAPsterxo is 6053c471-2528-45b6-a232-6fede867e610
    [21:58:35] [Netty Epoll Server IO #2/INFO] [FML]: Client protocol version 2
    [21:58:35] [Netty Epoll Server IO #2/INFO] [FML]: Client attempting to join with 259 mods : [email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected]@[email protected],[email protected],[email protected]_1.12-d4e654e,[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected]+release.110.b4fac73,[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],integ[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected]@[email protected]@[email protected]@[email protected]@[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected] 2.6.1,[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],opencomputers|[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected]
    [21:58:35] [Netty Epoll Server IO #2/INFO] [FML]: Attempting connection with missing mods [bedpatch] at CLIENT
    [21:58:35] [Netty Epoll Server IO #2/INFO] [journeymap]: CLIENT
    [21:58:52] [Server thread/INFO] [FML]: [Server thread] Server side modded connection established
    [21:58:52] [Server thread/INFO] [mcjty.lib.varia.Logging]: SMP: Sync dimensions to client
    [21:58:52] [Server thread/ERROR] [cyclicmagic]: Data not found for MAPsterxo
    [21:58:52] [Server thread/INFO] [net.minecraft.server.management.PlayerList]: MAPsterxo[/37.201.194.103:50650] logged in with entity id 2995 at (-322.5, 71.0, 509.5)
    [21:58:52] [Server thread/INFO] [net.minecraft.server.dedicated.DedicatedServer]: MAPsterxo joined the game
    [21:58:52] [Server thread/INFO] [journeymap]: MAPsterxo joining dimension 0
    [21:58:52] [Server thread/ERROR] [FML]: FMLIndexedMessageCodec exception caught
    io.netty.handler.codec.EncoderException: java.lang.RuntimeException: Undefined discriminator for message type DimensionPermissionPacket in channel jm_dim_permission
    at io.netty.handler.codec.MessageToMessageEncoder.write(MessageToMessageEncoder.java:106) ~[minecraft_server.1.12.2.jar:?]
    at io.netty.handler.codec.MessageToMessageCodec.write(MessageToMessageCodec.java:116) ~[minecraft_server.1.12.2.jar:?]
    at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:738) ~[minecraft_server.1.12.2.jar:?]
    at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:801) ~[minecraft_server.1.12.2.jar:?]
    at io.netty.channel.AbstractChannelHandlerContext.write(AbstractChannelHandlerContext.java:814) ~[minecraft_server.1.12.2.jar:?]
    at io.netty.channel.AbstractChannelHandlerContext.writeAndFlush(AbstractChannelHandlerContext.java:794) ~[minecraft_server.1.12.2.jar:?]
    at io.netty.channel.AbstractChannelHandlerContext.writeAndFlush(AbstractChannelHandlerContext.java:831) ~[minecraft_server.1.12.2.jar:?]
    at io.netty.channel.DefaultChannelPipeline.writeAndFlush(DefaultChannelPipeline.java:1032) ~[minecraft_server.1.12.2.jar:?]
    at io.netty.channel.AbstractChannel.writeAndFlush(AbstractChannel.java:296) ~[minecraft_server.1.12.2.jar:?]
    at net.minecraftforge.fml.common.network.simpleimpl.SimpleNetworkWrapper.sendTo(SimpleNetworkWrapper.java:250) [SimpleNetworkWrapper.class:?]
    at journeymap.common.network.PacketHandler.sendDimensionPacketToPlayer(PacketHandler.java:60) [PacketHandler.class:1.12.2-5.5.2]
    at journeymap.server.events.ForgeEvents.on(ForgeEvents.java:68) [ForgeEvents.class:1.12.2-5.5.2]
    at net.minecraftforge.fml.common.eventhandler.ASMEventHandler_2054_ForgeEvents_on_EntityJoinWorldEvent.invoke(.dynamic) [?:?]
    at net.minecraftforge.fml.common.eventhandler.ASMEventHandler.invoke(ASMEventHandler.java:90) [ASMEventHandler.class:?]
    at net.minecraftforge.fml.common.eventhandler.EventBus.post(EventBus.java:182) [EventBus.class:?]
    at net.minecraft.world.World.func_72838_d(World.java:1205) [amu.class:?]at net.minecraft.world.WorldServer.func_72838_d(WorldServer.java:1058) [oo.class:?]
    at net.minecraft.server.management.PlayerList.func_72377_c(PlayerList.java:376) [pl.class:?]
    at net.minecraft.server.management.PlayerList.initializeConnectionToPlayer(PlayerList.java:165) [pl.class:?]
    at shadows.fastbench.net.HijackedDedicatedPlayerList.initializeConnectionToPlayer(HijackedDedicatedPlayerList.java:19) [HijackedDedicatedPlayerList.class:?]
    at net.minecraftforge.fml.common.network.handshake.NetworkDispatcher.completeServerSideConnection(NetworkDispatcher.java:256) [NetworkDispatcher.class:?]
    at net.minecraftforge.fml.common.network.handshake.NetworkDispatcher.access$100(NetworkDispatcher.java:72) [NetworkDispatcher.class:?]
    at net.minecraftforge.fml.common.network.handshake.NetworkDispatcher$1.func_73660_a(NetworkDispatcher.java:205) [NetworkDispatcher$1.class:?]
    at net.minecraft.network.NetworkManager.func_74428_b(NetworkManager.java:285) [gw.class:?]
    at net.minecraft.network.NetworkSystem.func_151269_c(NetworkSystem.java:180) [oz.class:?]
    at net.minecraft.server.MinecraftServer.func_71190_q(MinecraftServer.java:790) [MinecraftServer.class:?]
    at net.minecraft.server.dedicated.DedicatedServer.func_71190_q(DedicatedServer.java:396) [nz.class:?]
    at net.minecraft.server.MinecraftServer.func_71217_p(MinecraftServer.java:668) [MinecraftServer.class:?]
    at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:526) [MinecraftServer.class:?]
    at java.lang.Thread.run(Thread.java:748) [?:1.8.0_171]
    Caused by: java.lang.RuntimeException: Undefined discriminator for message type DimensionPermissionPacket in channel jm_dim_permission
    at net.minecraftforge.fml.common.network.FMLIndexedMessageToMessageCodec.encode(FMLIndexedMessageToMessageCodec.java:72) ~[FMLIndexedMessageToMessageCodec.class:?]
    at io.netty.handler.codec.MessageToMessageCodec$1.encode(MessageToMessageCodec.java:67) ~[minecraft_server.1.12.2.jar:?]
    at io.netty.handler.codec.MessageToMessageEncoder.write(MessageToMessageEncoder.java:88) ~[minecraft_server.1.12.2.jar:?]
    … 29 more
    [21:58:52] [Server thread/INFO] [EnderCore]: Sending server configs to client for com.enderio.core.common.config.ConfigHandler
    [21:58:52] [Netty Epoll Server IO #2/ERROR] [FML]: NetworkDispatcher exception
    io.netty.handler.codec.EncoderException: String too big (was 36483 bytes encoded, max 32767)
    at net.minecraft.network.PacketBuffer.func_180714_a(PacketBuffer.java:400) ~[gy.class:?]
    at net.minecraft.network.PacketBuffer.func_179256_a(PacketBuffer.java:181) ~[gy.class:?]
    at net.minecraft.network.play.server.SPacketChat.func_148840_b(SourceFile:35) ~[in.class:?]
    at net.minecraft.network.NettyPacketEncoder.encode(NettyPacketEncoder.java:51) ~[ha.class:?]
    at net.minecraft.network.NettyPacketEncoder.encode(NettyPacketEncoder.java:12) ~[ha.class:?]
    at io.netty.handler.codec.MessageToByteEncoder.write(MessageToByteEncoder.java:107) ~[minecraft_server.1.12.2.jar:?]
    at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:738) ~[minecraft_server.1.12.2.jar:?]
    at io.netty.channel.AbstractChannelHandlerContext.invokeWrite(AbstractChannelHandlerContext.java:730) ~[minecraft_server.1.12.2.jar:?]
    at io.netty.channel.AbstractChannelHandlerContext.write(AbstractChannelHandlerContext.java:816) ~[minecraft_server.1.12.2.jar:?]
    at io.netty.channel.AbstractChannelHandlerContext.write(AbstractChannelHandlerContext.java:723) ~[minecraft_server.1.12.2.jar:?]
    at net.minecraftforge.fml.common.network.handshake.NetworkDispatcher.write(NetworkDispatcher.java:549) ~[NetworkDispatcher.class:?]
    at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:738) ~[minecraft_server.1.12.2.jar:?]
    at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:801) ~[minecraft_server.1.12.2.jar:?]
    at io.netty.channel.AbstractChannelHandlerContext.write(AbstractChannelHandlerContext.java:814) ~[minecraft_server.1.12.2.jar:?]
    at io.netty.channel.AbstractChannelHandlerContext.writeAndFlush(AbstractChannelHandlerContext.java:794) ~[minecraft_server.1.12.2.jar:?]
    at io.netty.channel.AbstractChannelHandlerContext.writeAndFlush(AbstractChannelHandlerContext.java:831) ~[minecraft_server.1.12.2.jar:?]
    at io.netty.channel.DefaultChannelPipeline.writeAndFlush(DefaultChannelPipeline.java:1032) ~[minecraft_server.1.12.2.jar:?]
    at io.netty.channel.AbstractChannel.writeAndFlush(AbstractChannel.java:296) ~[minecraft_server.1.12.2.jar:?]
    at net.minecraft.network.NetworkManager$4.run(NetworkManager.java:245) [gw$4.class:?]
    at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:163) [minecraft_server.1.12.2.jar:?]
    at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:403) [minecraft_server.1.12.2.jar:?]
    at io.netty.channel.epoll.EpollEventLoop.run(EpollEventLoop.java:304) [minecraft_server.1.12.2.jar:?]
    at io.netty.util.concurrent.SingleThreadEventExecutor$5.run(SingleThreadEventExecutor.java:858) [minecraft_server.1.12.2.jar:?]
    at java.lang.Thread.run(Thread.java:748) [?:1.8.0_171]
    [21:58:52] [Server thread/INFO] [wizardry]: Sending module list to MAPsterxo
    [21:58:52] [Server thread/INFO] [mcjty.lib.varia.Logging]: SMP: Player logged in: Sync diminfo to clients
    [21:58:52] [Server thread/INFO] [mcjty.lib.varia.Logging]: Send dimlet rules to the client
    [21:58:52] [Server thread/INFO] [mcjty.lib.varia.Logging]: Rules packet size: 5779 of 8192
    [21:58:53] [Server thread/INFO] [Actually Additions]: Sending Player Data to player MAPsterxo with UUID 6053c471-2528-45b6-a232-6fede867e610.
    [21:58:53] [Server thread/INFO] [Mekanism]: Sent config to ‘MAPsterxo.’
    [21:58:53] [Server thread/INFO] [journeymap]: Sending log in packet.
    [21:58:53] [Server thread/INFO] [STDOUT]: [com.blamejared.initialinventory.events.CommonEventHandler:lambda$playerLogin$0:28]: [email protected]:-1
    [21:58:53] [Server thread/INFO] [Astral Sorcery]: [AstralSorcery] Synchronizing configuration to MAPsterxo
    [21:58:54] [Server thread/INFO] [net.minecraft.network.NetHandlerPlayServer]: MAPsterxo lost connection: Internal Exception: io.netty.handler.codec.EncoderException: String too big (was 36483 bytes encoded, max 32767

    [21:58:54] [Server thread/INFO] [net.minecraft.server.dedicated.DedicatedServer]: MAPsterxo left the game
    [21:58:54] [Server thread/WARN] [twilightforest]: Mod was keeping bauble items in reserve for player %s but they logged out! Items are being dropped.
    >

    Hello everyone,

    I want to run a minecraft server running the modpack «all the mods 3», version 5.9.6b and MC version 1.12.2. Unfortunately all players trying to connect get disconnected (see log above)

    I do no understand the error messages, I just see that lots of exceptions get thrown and some string (what string ? ) is too big. I highlighted all lines that I think are important in the above log.

    Let me say Two things: This server is set up completely new. Such string errors occured in the past from griefers using a hacked client and placing «hacked signs» that contained too many characters. This can not be the case !

    And the log says that the client is missing «bedpatch». This is not true, I checked my client and bedpatch is checked !

    And let me add one last thing before I start the technical description: I ran for several months an FTB:infinity evolved server. So I know that minecraft works ! It seems to be connected to ATM3

    Changes I did to ATM3:

    • disabled Draconic evolution (by naming the .jar to .jar.disabled in the mods folder)
    • disabled terraqueous
    • disabled AbyssalCraft and Abyssalcraft Integration
    • disabled Plants (mod)
    • disabled taint in Thaumcraft (by changing the config)
    • disabled several biomes in biomesoplenty

    Technical server info (it’s a vserver):

    12GB ram

    Intel(R) Xeon(R) CPU E5-2620 v3 @ 2.40GHz

    Ubuntu 16.04

    java 1.8.0_171 ( just updated )

    I am really mad right now because I can’t figure out what’s wrong. I would greatly appreciate any help or ideas what to do.

    Best regards

    MAPster


  • #2

    May 31, 2018

    update: When launching the ATM3 server in standard configuration I can connect. The connection still throws lots of errors, but the server then runs smoothly and I can walk around and do stuff.
    I will keep this updated as I progress.

    Best regards

    MAPster

  • To post a comment, please login.

Posts Quoted:

Reply

Clear All Quotes


@Leapo

Bug Report

After a few weeks of uptime, the server begins to crash with the following error:
io.netty.handler.codec.EncoderException: String too big (was 46115 bytes encoded, max 32767)

Once this happens, restarting the server has no effect. The server crashes as soon as any player joins, with the same error.

Rolling back the server to a backup resolves the issue short-term, but it always comes back.

Logs

Server log: https://pastebin.com/bG7a3wsH

World Information

  • Preset: Sky Islands
  • Prestige: No
  • Modpack Version world created in: 4.0.7 (Upgrading to 4.0.8 did not help)
  • Additional Content Installed: None

Client Information

  • Modpack Version: 4.0.8
  • Java Version: 1.8.0.51 (64bit)
  • Launcher Used: Twitch
  • Memory Allocated: 4GB
  • Server/LAN/Single Player: Server
  • Optifine Installed: No
  • Shaders Enabled: No

Server Information

  • Java Version: 1.8.0_212
  • Operating System: CentOS 7
  • Hoster/Hosting Solution: Self-hosted server.

@Leapo

I’m now at the point where restoring from a recent backup only works for a few minutes before the server starts sending packets that are too large. Any idea what mod might be causing this?

@sam-kirby

@Leapo

Crash report?

Check the Server Log link, shows the crash… or is there something else I need to post?

@sam-kirby

The server log isn’t even a complete log, just a stack trace.

There’s not much to go on here. The only potential lead is that the game is trying to send information about entities on leashes or being ridden in a chunk.

Anything weird going on with entities matching that description?

@Leapo

Not as far as I know. Is there a more helpful log I could send?

Edit: I have a sneaking suspicion it’s Simple Storage Network crashing when it starts tracking too many items. I loaded an old enough backup that I could get on the server and look around, and found a storage network tracking 39k oak wood (and climbing). Any way to verify this?

@Darkosto

I would recommend you restart your server more often than you are. It sounds like you’re letting it go for weeks at time. I wouldn’t suggest even running vanilla without a restart every couple of days at least. I don’t think I’ve encountered modpacks that have been able to run for that long of a period without a restart.

@Leapo

It doesn’t matter how often the server is restarted. This is a progressive issue where packet sizes steadily increase, and eventually exceed the client send limit.

Packet sizes continue increasing, right from where they left off, after every restart. Doesn’t matter if I restart the server hourly, packet sizes eventually become larger than 32767, causing the entire server to crash on client-join.

@Leapo

The server log isn’t even a complete log, just a stack trace.

Is there a complete log I can upload for you? Where would I find it?

@thebigschnoz

I also had the same issue.

I went into MCEdit and tried to delete some blocks that I was having known issues with, but no luck.

@Gunner76th

@SoulK1ller

Edit: we found the source of our error to be a horse connected to a grindstone via a lead. Deleting the grindstone and horse resolved the error.

@Gunner76th

@Leapo The log that would have been needed from your server is the actual crash report from the ./crash-reports/ folder and the latest.log from the ./logs/ folder

The literal name of the log file is latest.log, if you are on windows it might just show up as latest in File Explorer but if you look to the right you will see it is listed as File Type LOG
This goes for ALL bug/issue/crash reports you file on any github, these are the minimum files needed for crashes. I hope this helps you in the future.

@Leapo

@Leapo The log that would have been needed from your server is the actual crash report from the ./crash-reports/ folder and the latest.log from the ./logs/ folder

The literal name of the log file is latest.log

Thank you! I just wish that file path was noted somewhere, or that one of the replies from 11 months ago had mentioned it.

I had to give up on this a long time ago, unfortunately. Old server and logs are long gone. We moved to a custom Spigot server instead.

Sounds like others are still having this issue, though, so it should probably remain open until resolved.

@Leapo

Trying SkyFactory again. I’ll report back if the same issue crops up…

I will note, there was no server crash report, because this bug doesn’t actually crash the server. It creates packet sizes so large that clients become unable to join, but the server never actually crashes. All the server logs show are players attempting to join, and immediately disconnecting because their clients throw the error «io.netty.handler.codec.EncoderException: String too big»

I might try running the server without Simple Storage Network included, but I don’t know if that’ll break the progression tree…

—- Minecraft Crash Report —-
// Who set us up the TNT?

Time: 1.07.2022 15:53
Description: Ticking entity

io.netty.handler.codec.EncoderException: String too big (was 37355 bytes encoded, max 32767)
    at net.minecraft.network.FriendlyByteBuf.m_130072_(FriendlyByteBuf.java:509) ~[client-1.18.2-20220404.173914-srg.jar%23178!/:?] {re:classloading,re:mixin}
    at net.minecraft.network.FriendlyByteBuf.m_130070_(FriendlyByteBuf.java:503) ~[client-1.18.2-20220404.173914-srg.jar%23178!/:?] {re:classloading,re:mixin}
    at electrodynamics.common.packet.types.PacketPlayerInformation.encode(PacketPlayerInformation.java:41) ~[Electrodynamics-1.18.2-0.6.3-10.jar%2393!/:1.18.2-0.6.3-10] {re:classloading}
    at net.minecraftforge.network.simple.IndexedMessageCodec.lambda$tryEncode$4(IndexedMessageCodec.java:121) ~[forge-1.18.2-40.1.54-universal.jar%23183!/:?] {re:classloading}
    at java.util.Optional.ifPresent(Optional.java:178) ~[?:?] {re:mixin}
    at net.minecraftforge.network.simple.IndexedMessageCodec.tryEncode(IndexedMessageCodec.java:119) ~[forge-1.18.2-40.1.54-universal.jar%23183!/:?] {re:classloading}
    at net.minecraftforge.network.simple.IndexedMessageCodec.build(IndexedMessageCodec.java:134) ~[forge-1.18.2-40.1.54-universal.jar%23183!/:?] {re:classloading}
    at net.minecraftforge.network.simple.SimpleChannel.encodeMessage(SimpleChannel.java:77) ~[forge-1.18.2-40.1.54-universal.jar%23183!/:?] {re:mixin,re:classloading}
    at net.minecraftforge.network.simple.SimpleChannel.toBuffer(SimpleChannel.java:90) ~[forge-1.18.2-40.1.54-universal.jar%23183!/:?] {re:mixin,re:classloading}
    at net.minecraftforge.network.simple.SimpleChannel.toVanillaPacket(SimpleChannel.java:121) ~[forge-1.18.2-40.1.54-universal.jar%23183!/:?] {re:mixin,re:classloading}
    at net.minecraftforge.network.simple.SimpleChannel.sendTo(SimpleChannel.java:101) ~[forge-1.18.2-40.1.54-universal.jar%23183!/:?] {re:mixin,re:classloading}
    at net.minecraftforge.network.simple.SimpleChannel.sendToServer(SimpleChannel.java:96) ~[forge-1.18.2-40.1.54-universal.jar%23183!/:?] {re:mixin,re:classloading}
    at electrodynamics.common.event.PlayerHandler.tick(PlayerHandler.java:43) ~[Electrodynamics-1.18.2-0.6.3-10.jar%2393!/:1.18.2-0.6.3-10] {re:classloading}
    at net.minecraftforge.eventbus.ASMEventHandler_767_PlayerHandler_tick_PlayerTickEvent.invoke(.dynamic) ~[?:?] {}
    at net.minecraftforge.eventbus.ASMEventHandler.invoke(ASMEventHandler.java:85) ~[eventbus-5.0.3.jar%232!/:?] {}
    at net.minecraftforge.eventbus.EventBus.post(EventBus.java:302) ~[eventbus-5.0.3.jar%232!/:?] {}
    at net.minecraftforge.eventbus.EventBus.post(EventBus.java:283) ~[eventbus-5.0.3.jar%232!/:?] {}
    at net.minecraftforge.event.ForgeEventFactory.onPlayerPreTick(ForgeEventFactory.java:860) ~[forge-1.18.2-40.1.54-universal.jar%23183!/:?] {re:classloading}
    at net.minecraft.world.entity.player.Player.m_8119_(Player.java:208) ~[client-1.18.2-20220404.173914-srg.jar%23178!/:?] {re:computing_frames,pl:accesstransformer:B,re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:apotheosis.mixins.json:PlayerMixin,pl:mixin:APP:chiselsandbits.mixins.json:client.PlayerScopingMixin,pl:mixin:APP:expandability.mixins.json:swimming.PlayerMixin,pl:mixin:APP:tetra.mixins.json:MixinPlayerEntity,pl:mixin:A}
    at net.minecraft.client.player.LocalPlayer.m_8119_(LocalPlayer.java:183) ~[client-1.18.2-20220404.173914-srg.jar%23178!/:?] {re:computing_frames,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:mixin,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,pl:mixin:APP:caelus.mixins.json:MixinLocalPlayer,pl:mixin:APP:chiselsandbits.mixins.json:client.LocalPlayerScopingMixin,pl:mixin:APP:expandability.mixins.json:swimming.client.LocalPlayerMixin,pl:mixin:APP:create.mixins.json:HeavyBootsOnPlayerMixin,pl:mixin:A,pl:runtimedistcleaner:A}
    at net.minecraft.client.multiplayer.ClientLevel.m_104639_(ClientLevel.java:269) ~[client-1.18.2-20220404.173914-srg.jar%23178!/:?] {re:mixin,xf:OptiFine:default,re:classloading,xf:OptiFine:default,pl:mixin:APP:architectury.mixins.json:MixinClientLevel,pl:mixin:APP:flywheel.mixins.json:ClientLevelMixin,pl:mixin:APP:create.mixins.json:DestroyProgressMixin,pl:mixin:A}
    at net.minecraft.world.level.Level.m_46653_(Level.java:486) ~[client-1.18.2-20220404.173914-srg.jar%23178!/:?] {re:computing_frames,pl:accesstransformer:B,re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:mixins.hammerlib.json:LevelMixin,pl:mixin:APP:sereneseasons.mixins.json:MixinLevel,pl:mixin:A}
    at net.minecraft.client.multiplayer.ClientLevel.lambda$tickEntities$4(ClientLevel.java:246) ~[client-1.18.2-20220404.173914-srg.jar%23178!/:?] {re:mixin,xf:OptiFine:default,re:classloading,xf:OptiFine:default,pl:mixin:APP:architectury.mixins.json:MixinClientLevel,pl:mixin:APP:flywheel.mixins.json:ClientLevelMixin,pl:mixin:APP:create.mixins.json:DestroyProgressMixin,pl:mixin:A}
    at net.minecraft.world.level.entity.EntityTickList.m_156910_(EntityTickList.java:54) ~[client-1.18.2-20220404.173914-srg.jar%23178!/:?] {re:classloading}
    at net.minecraft.client.multiplayer.ClientLevel.m_104804_(ClientLevel.java:242) ~[client-1.18.2-20220404.173914-srg.jar%23178!/:?] {re:mixin,xf:OptiFine:default,re:classloading,xf:OptiFine:default,pl:mixin:APP:architectury.mixins.json:MixinClientLevel,pl:mixin:APP:flywheel.mixins.json:ClientLevelMixin,pl:mixin:APP:create.mixins.json:DestroyProgressMixin,pl:mixin:A}
    at net.minecraft.client.Minecraft.m_91398_(Minecraft.java:1691) ~[client-1.18.2-20220404.173914-srg.jar%23178!/:?] {re:mixin,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,pl:mixin:APP:ae2.mixins.json:PickColorMixin,pl:mixin:APP:architectury.mixins.json:MixinMinecraft,pl:mixin:APP:balm.mixins.json:MinecraftMixin,pl:mixin:APP:bookshelf.common.mixins.json:client.AccessorMinecraft,pl:mixin:APP:flywheel.mixins.json:PausedPartialTickAccessor,pl:mixin:APP:immersiveengineering.mixins.json:accessors.client.MinecraftAccess,pl:mixin:APP:create.mixins.json:WindowResizeMixin,pl:mixin:APP:securitycraft.mixins.json:camera.MinecraftMixin,pl:mixin:A,pl:runtimedistcleaner:A}
    at net.minecraft.client.Minecraft.m_91383_(Minecraft.java:1019) ~[client-1.18.2-20220404.173914-srg.jar%23178!/:?] {re:mixin,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,pl:mixin:APP:ae2.mixins.json:PickColorMixin,pl:mixin:APP:architectury.mixins.json:MixinMinecraft,pl:mixin:APP:balm.mixins.json:MinecraftMixin,pl:mixin:APP:bookshelf.common.mixins.json:client.AccessorMinecraft,pl:mixin:APP:flywheel.mixins.json:PausedPartialTickAccessor,pl:mixin:APP:immersiveengineering.mixins.json:accessors.client.MinecraftAccess,pl:mixin:APP:create.mixins.json:WindowResizeMixin,pl:mixin:APP:securitycraft.mixins.json:camera.MinecraftMixin,pl:mixin:A,pl:runtimedistcleaner:A}
    at net.minecraft.client.Minecraft.m_91374_(Minecraft.java:663) ~[client-1.18.2-20220404.173914-srg.jar%23178!/:?] {re:mixin,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,pl:mixin:APP:ae2.mixins.json:PickColorMixin,pl:mixin:APP:architectury.mixins.json:MixinMinecraft,pl:mixin:APP:balm.mixins.json:MinecraftMixin,pl:mixin:APP:bookshelf.common.mixins.json:client.AccessorMinecraft,pl:mixin:APP:flywheel.mixins.json:PausedPartialTickAccessor,pl:mixin:APP:immersiveengineering.mixins.json:accessors.client.MinecraftAccess,pl:mixin:APP:create.mixins.json:WindowResizeMixin,pl:mixin:APP:securitycraft.mixins.json:camera.MinecraftMixin,pl:mixin:A,pl:runtimedistcleaner:A}
    at net.minecraft.client.main.Main.main(Main.java:205) ~[client-1.18.2-20220404.173914-srg.jar%23178!/:?] {re:classloading,pl:runtimedistcleaner:A}
    at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:?] {}
    at jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) ~[?:?] {}
    at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:?] {}
    at java.lang.reflect.Method.invoke(Method.java:568) ~[?:?] {}
    at net.minecraftforge.fml.loading.targets.CommonClientLaunchHandler.lambda$launchService$0(CommonClientLaunchHandler.java:31) ~[fmlloader-1.18.2-40.1.54.jar%2316!/:?] {}
    at cpw.mods.modlauncher.LaunchServiceHandlerDecorator.launch(LaunchServiceHandlerDecorator.java:37) [modlauncher-9.1.3.jar%235!/:?] {}
    at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:53) [modlauncher-9.1.3.jar%235!/:?] {}
    at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:71) [modlauncher-9.1.3.jar%235!/:?] {}
    at cpw.mods.modlauncher.Launcher.run(Launcher.java:106) [modlauncher-9.1.3.jar%235!/:?] {}
    at cpw.mods.modlauncher.Launcher.main(Launcher.java:77) [modlauncher-9.1.3.jar%235!/:?] {}
    at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:26) [modlauncher-9.1.3.jar%235!/:?] {}
    at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:23) [modlauncher-9.1.3.jar%235!/:?] {}
    at cpw.mods.bootstraplauncher.BootstrapLauncher.main(BootstrapLauncher.java:149) [bootstraplauncher-1.0.0.jar:?] {}

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

— Head —
Thread: Render thread
Stacktrace:
    at net.minecraft.network.FriendlyByteBuf.m_130072_(FriendlyByteBuf.java:509) ~[client-1.18.2-20220404.173914-srg.jar%23178!/:?] {re:classloading,re:mixin}
    at net.minecraft.network.FriendlyByteBuf.m_130070_(FriendlyByteBuf.java:503) ~[client-1.18.2-20220404.173914-srg.jar%23178!/:?] {re:classloading,re:mixin}
    at electrodynamics.common.packet.types.PacketPlayerInformation.encode(PacketPlayerInformation.java:41) ~[Electrodynamics-1.18.2-0.6.3-10.jar%2393!/:1.18.2-0.6.3-10] {re:classloading}
    at net.minecraftforge.network.simple.IndexedMessageCodec.lambda$tryEncode$4(IndexedMessageCodec.java:121) ~[forge-1.18.2-40.1.54-universal.jar%23183!/:?] {re:classloading}
    at java.util.Optional.ifPresent(Optional.java:178) ~[?:?] {re:mixin}
    at net.minecraftforge.network.simple.IndexedMessageCodec.tryEncode(IndexedMessageCodec.java:119) ~[forge-1.18.2-40.1.54-universal.jar%23183!/:?] {re:classloading}
    at net.minecraftforge.network.simple.IndexedMessageCodec.build(IndexedMessageCodec.java:134) ~[forge-1.18.2-40.1.54-universal.jar%23183!/:?] {re:classloading}
    at net.minecraftforge.network.simple.SimpleChannel.encodeMessage(SimpleChannel.java:77) ~[forge-1.18.2-40.1.54-universal.jar%23183!/:?] {re:mixin,re:classloading}
    at net.minecraftforge.network.simple.SimpleChannel.toBuffer(SimpleChannel.java:90) ~[forge-1.18.2-40.1.54-universal.jar%23183!/:?] {re:mixin,re:classloading}
    at net.minecraftforge.network.simple.SimpleChannel.toVanillaPacket(SimpleChannel.java:121) ~[forge-1.18.2-40.1.54-universal.jar%23183!/:?] {re:mixin,re:classloading}
    at net.minecraftforge.network.simple.SimpleChannel.sendTo(SimpleChannel.java:101) ~[forge-1.18.2-40.1.54-universal.jar%23183!/:?] {re:mixin,re:classloading}
    at net.minecraftforge.network.simple.SimpleChannel.sendToServer(SimpleChannel.java:96) ~[forge-1.18.2-40.1.54-universal.jar%23183!/:?] {re:mixin,re:classloading}
    at electrodynamics.common.event.PlayerHandler.tick(PlayerHandler.java:43) ~[Electrodynamics-1.18.2-0.6.3-10.jar%2393!/:1.18.2-0.6.3-10] {re:classloading}
    at net.minecraftforge.eventbus.ASMEventHandler_767_PlayerHandler_tick_PlayerTickEvent.invoke(.dynamic) ~[?:?] {}
    at net.minecraftforge.eventbus.ASMEventHandler.invoke(ASMEventHandler.java:85) ~[eventbus-5.0.3.jar%232!/:?] {}
    at net.minecraftforge.eventbus.EventBus.post(EventBus.java:302) ~[eventbus-5.0.3.jar%232!/:?] {}
    at net.minecraftforge.eventbus.EventBus.post(EventBus.java:283) ~[eventbus-5.0.3.jar%232!/:?] {}
    at net.minecraftforge.event.ForgeEventFactory.onPlayerPreTick(ForgeEventFactory.java:860) ~[forge-1.18.2-40.1.54-universal.jar%23183!/:?] {re:classloading}
    at net.minecraft.world.entity.player.Player.m_8119_(Player.java:208) ~[client-1.18.2-20220404.173914-srg.jar%23178!/:?] {re:computing_frames,pl:accesstransformer:B,re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:apotheosis.mixins.json:PlayerMixin,pl:mixin:APP:chiselsandbits.mixins.json:client.PlayerScopingMixin,pl:mixin:APP:expandability.mixins.json:swimming.PlayerMixin,pl:mixin:APP:tetra.mixins.json:MixinPlayerEntity,pl:mixin:A}
    at net.minecraft.client.player.LocalPlayer.m_8119_(LocalPlayer.java:183) ~[client-1.18.2-20220404.173914-srg.jar%23178!/:?] {re:computing_frames,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:mixin,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,pl:mixin:APP:caelus.mixins.json:MixinLocalPlayer,pl:mixin:APP:chiselsandbits.mixins.json:client.LocalPlayerScopingMixin,pl:mixin:APP:expandability.mixins.json:swimming.client.LocalPlayerMixin,pl:mixin:APP:create.mixins.json:HeavyBootsOnPlayerMixin,pl:mixin:A,pl:runtimedistcleaner:A}
    at net.minecraft.client.multiplayer.ClientLevel.m_104639_(ClientLevel.java:269) ~[client-1.18.2-20220404.173914-srg.jar%23178!/:?] {re:mixin,xf:OptiFine:default,re:classloading,xf:OptiFine:default,pl:mixin:APP:architectury.mixins.json:MixinClientLevel,pl:mixin:APP:flywheel.mixins.json:ClientLevelMixin,pl:mixin:APP:create.mixins.json:DestroyProgressMixin,pl:mixin:A}
    at net.minecraft.world.level.Level.m_46653_(Level.java:486) ~[client-1.18.2-20220404.173914-srg.jar%23178!/:?] {re:computing_frames,pl:accesstransformer:B,re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:mixins.hammerlib.json:LevelMixin,pl:mixin:APP:sereneseasons.mixins.json:MixinLevel,pl:mixin:A}
    at net.minecraft.client.multiplayer.ClientLevel.lambda$tickEntities$4(ClientLevel.java:246) ~[client-1.18.2-20220404.173914-srg.jar%23178!/:?] {re:mixin,xf:OptiFine:default,re:classloading,xf:OptiFine:default,pl:mixin:APP:architectury.mixins.json:MixinClientLevel,pl:mixin:APP:flywheel.mixins.json:ClientLevelMixin,pl:mixin:APP:create.mixins.json:DestroyProgressMixin,pl:mixin:A}
    at net.minecraft.world.level.entity.EntityTickList.m_156910_(EntityTickList.java:54) ~[client-1.18.2-20220404.173914-srg.jar%23178!/:?] {re:classloading}
    at net.minecraft.client.multiplayer.ClientLevel.m_104804_(ClientLevel.java:242) ~[client-1.18.2-20220404.173914-srg.jar%23178!/:?] {re:mixin,xf:OptiFine:default,re:classloading,xf:OptiFine:default,pl:mixin:APP:architectury.mixins.json:MixinClientLevel,pl:mixin:APP:flywheel.mixins.json:ClientLevelMixin,pl:mixin:APP:create.mixins.json:DestroyProgressMixin,pl:mixin:A}
— Entity being ticked —
Details:
    Entity Type: minecraft:player (net.minecraft.client.player.LocalPlayer)
    Entity ID: 329
    Entity Name: Batuh
    Entity’s Exact location: 25.50, 66.00, 25.50
    Entity’s Block location: World: (25,66,25), Section: (at 9,2,9 in 1,4,1; chunk contains blocks 16,-64,16 to 31,319,31), Region: (0,0; contains chunks 0,0 to 31,31, blocks 0,-64,0 to 511,319,511)
    Entity’s Momentum: 0.00, -0.08, 0.00
    Entity’s Passengers: []
    Entity’s Vehicle: null
Stacktrace:
    at net.minecraft.world.level.Level.m_46653_(Level.java:486) ~[client-1.18.2-20220404.173914-srg.jar%23178!/:?] {re:computing_frames,pl:accesstransformer:B,re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:mixins.hammerlib.json:LevelMixin,pl:mixin:APP:sereneseasons.mixins.json:MixinLevel,pl:mixin:A}
    at net.minecraft.client.multiplayer.ClientLevel.lambda$tickEntities$4(ClientLevel.java:246) ~[client-1.18.2-20220404.173914-srg.jar%23178!/:?] {re:mixin,xf:OptiFine:default,re:classloading,xf:OptiFine:default,pl:mixin:APP:architectury.mixins.json:MixinClientLevel,pl:mixin:APP:flywheel.mixins.json:ClientLevelMixin,pl:mixin:APP:create.mixins.json:DestroyProgressMixin,pl:mixin:A}
    at net.minecraft.world.level.entity.EntityTickList.m_156910_(EntityTickList.java:54) ~[client-1.18.2-20220404.173914-srg.jar%23178!/:?] {re:classloading}
    at net.minecraft.client.multiplayer.ClientLevel.m_104804_(ClientLevel.java:242) ~[client-1.18.2-20220404.173914-srg.jar%23178!/:?] {re:mixin,xf:OptiFine:default,re:classloading,xf:OptiFine:default,pl:mixin:APP:architectury.mixins.json:MixinClientLevel,pl:mixin:APP:flywheel.mixins.json:ClientLevelMixin,pl:mixin:APP:create.mixins.json:DestroyProgressMixin,pl:mixin:A}
    at net.minecraft.client.Minecraft.m_91398_(Minecraft.java:1691) ~[client-1.18.2-20220404.173914-srg.jar%23178!/:?] {re:mixin,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,pl:mixin:APP:ae2.mixins.json:PickColorMixin,pl:mixin:APP:architectury.mixins.json:MixinMinecraft,pl:mixin:APP:balm.mixins.json:MinecraftMixin,pl:mixin:APP:bookshelf.common.mixins.json:client.AccessorMinecraft,pl:mixin:APP:flywheel.mixins.json:PausedPartialTickAccessor,pl:mixin:APP:immersiveengineering.mixins.json:accessors.client.MinecraftAccess,pl:mixin:APP:create.mixins.json:WindowResizeMixin,pl:mixin:APP:securitycraft.mixins.json:camera.MinecraftMixin,pl:mixin:A,pl:runtimedistcleaner:A}
    at net.minecraft.client.Minecraft.m_91383_(Minecraft.java:1019) ~[client-1.18.2-20220404.173914-srg.jar%23178!/:?] {re:mixin,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,pl:mixin:APP:ae2.mixins.json:PickColorMixin,pl:mixin:APP:architectury.mixins.json:MixinMinecraft,pl:mixin:APP:balm.mixins.json:MinecraftMixin,pl:mixin:APP:bookshelf.common.mixins.json:client.AccessorMinecraft,pl:mixin:APP:flywheel.mixins.json:PausedPartialTickAccessor,pl:mixin:APP:immersiveengineering.mixins.json:accessors.client.MinecraftAccess,pl:mixin:APP:create.mixins.json:WindowResizeMixin,pl:mixin:APP:securitycraft.mixins.json:camera.MinecraftMixin,pl:mixin:A,pl:runtimedistcleaner:A}
    at net.minecraft.client.Minecraft.m_91374_(Minecraft.java:663) ~[client-1.18.2-20220404.173914-srg.jar%23178!/:?] {re:mixin,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,pl:mixin:APP:ae2.mixins.json:PickColorMixin,pl:mixin:APP:architectury.mixins.json:MixinMinecraft,pl:mixin:APP:balm.mixins.json:MinecraftMixin,pl:mixin:APP:bookshelf.common.mixins.json:client.AccessorMinecraft,pl:mixin:APP:flywheel.mixins.json:PausedPartialTickAccessor,pl:mixin:APP:immersiveengineering.mixins.json:accessors.client.MinecraftAccess,pl:mixin:APP:create.mixins.json:WindowResizeMixin,pl:mixin:APP:securitycraft.mixins.json:camera.MinecraftMixin,pl:mixin:A,pl:runtimedistcleaner:A}
    at net.minecraft.client.main.Main.main(Main.java:205) ~[client-1.18.2-20220404.173914-srg.jar%23178!/:?] {re:classloading,pl:runtimedistcleaner:A}
    at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:?] {}
    at jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) ~[?:?] {}
    at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:?] {}
    at java.lang.reflect.Method.invoke(Method.java:568) ~[?:?] {}
    at net.minecraftforge.fml.loading.targets.CommonClientLaunchHandler.lambda$launchService$0(CommonClientLaunchHandler.java:31) ~[fmlloader-1.18.2-40.1.54.jar%2316!/:?] {}
    at cpw.mods.modlauncher.LaunchServiceHandlerDecorator.launch(LaunchServiceHandlerDecorator.java:37) [modlauncher-9.1.3.jar%235!/:?] {}
    at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:53) [modlauncher-9.1.3.jar%235!/:?] {}
    at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:71) [modlauncher-9.1.3.jar%235!/:?] {}
    at cpw.mods.modlauncher.Launcher.run(Launcher.java:106) [modlauncher-9.1.3.jar%235!/:?] {}
    at cpw.mods.modlauncher.Launcher.main(Launcher.java:77) [modlauncher-9.1.3.jar%235!/:?] {}
    at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:26) [modlauncher-9.1.3.jar%235!/:?] {}
    at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:23) [modlauncher-9.1.3.jar%235!/:?] {}
    at cpw.mods.bootstraplauncher.BootstrapLauncher.main(BootstrapLauncher.java:149) [bootstraplauncher-1.0.0.jar:?] {}

— Affected level —
Details:
    All players: 1 total; [LocalPlayer[‘Batuh’/329, l=’ClientLevel’, x=25.50, y=66.00, z=25.50]]
    Chunk stats: 121, 57
    Level dimension: minecraft:overworld
    Level spawn location: World: (16,67,32), Section: (at 0,3,0 in 1,4,2; chunk contains blocks 16,-64,32 to 31,319,47), Region: (0,0; contains chunks 0,0 to 31,31, blocks 0,-64,0 to 511,319,511)
    Level time: 60 game time, 60 day time
    Server brand: forge
    Server type: Integrated singleplayer server
Stacktrace:
    at net.minecraft.client.multiplayer.ClientLevel.m_6026_(ClientLevel.java:516) ~[client-1.18.2-20220404.173914-srg.jar%23178!/:?] {re:mixin,xf:OptiFine:default,re:classloading,xf:OptiFine:default,pl:mixin:APP:architectury.mixins.json:MixinClientLevel,pl:mixin:APP:flywheel.mixins.json:ClientLevelMixin,pl:mixin:APP:create.mixins.json:DestroyProgressMixin,pl:mixin:A}
    at net.minecraft.client.Minecraft.m_91354_(Minecraft.java:2260) ~[client-1.18.2-20220404.173914-srg.jar%23178!/:?] {re:mixin,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,pl:mixin:APP:ae2.mixins.json:PickColorMixin,pl:mixin:APP:architectury.mixins.json:MixinMinecraft,pl:mixin:APP:balm.mixins.json:MinecraftMixin,pl:mixin:APP:bookshelf.common.mixins.json:client.AccessorMinecraft,pl:mixin:APP:flywheel.mixins.json:PausedPartialTickAccessor,pl:mixin:APP:immersiveengineering.mixins.json:accessors.client.MinecraftAccess,pl:mixin:APP:create.mixins.json:WindowResizeMixin,pl:mixin:APP:securitycraft.mixins.json:camera.MinecraftMixin,pl:mixin:A,pl:runtimedistcleaner:A}
    at net.minecraft.client.Minecraft.m_91374_(Minecraft.java:680) ~[client-1.18.2-20220404.173914-srg.jar%23178!/:?] {re:mixin,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,pl:mixin:APP:ae2.mixins.json:PickColorMixin,pl:mixin:APP:architectury.mixins.json:MixinMinecraft,pl:mixin:APP:balm.mixins.json:MinecraftMixin,pl:mixin:APP:bookshelf.common.mixins.json:client.AccessorMinecraft,pl:mixin:APP:flywheel.mixins.json:PausedPartialTickAccessor,pl:mixin:APP:immersiveengineering.mixins.json:accessors.client.MinecraftAccess,pl:mixin:APP:create.mixins.json:WindowResizeMixin,pl:mixin:APP:securitycraft.mixins.json:camera.MinecraftMixin,pl:mixin:A,pl:runtimedistcleaner:A}
    at net.minecraft.client.main.Main.main(Main.java:205) ~[client-1.18.2-20220404.173914-srg.jar%23178!/:?] {re:classloading,pl:runtimedistcleaner:A}
    at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:?] {}
    at jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) ~[?:?] {}
    at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:?] {}
    at java.lang.reflect.Method.invoke(Method.java:568) ~[?:?] {}
    at net.minecraftforge.fml.loading.targets.CommonClientLaunchHandler.lambda$launchService$0(CommonClientLaunchHandler.java:31) ~[fmlloader-1.18.2-40.1.54.jar%2316!/:?] {}
    at cpw.mods.modlauncher.LaunchServiceHandlerDecorator.launch(LaunchServiceHandlerDecorator.java:37) [modlauncher-9.1.3.jar%235!/:?] {}
    at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:53) [modlauncher-9.1.3.jar%235!/:?] {}
    at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:71) [modlauncher-9.1.3.jar%235!/:?] {}
    at cpw.mods.modlauncher.Launcher.run(Launcher.java:106) [modlauncher-9.1.3.jar%235!/:?] {}
    at cpw.mods.modlauncher.Launcher.main(Launcher.java:77) [modlauncher-9.1.3.jar%235!/:?] {}
    at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:26) [modlauncher-9.1.3.jar%235!/:?] {}
    at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:23) [modlauncher-9.1.3.jar%235!/:?] {}
    at cpw.mods.bootstraplauncher.BootstrapLauncher.main(BootstrapLauncher.java:149) [bootstraplauncher-1.0.0.jar:?] {}

— Last reload —
Details:
    Reload number: 1
    Reload reason: initial
    Finished: Yes
    Packs: Mod Resources, Default, Copper Legacy Pack.zip, Tissou’s Zombie Pack 1.18_2.1.zip, guiretextures-darkmode-1.7.4.zip, quark-emote-pack, Solar Flux Generated Resources

— System Details —
Details:
    Minecraft Version: 1.18.2
    Minecraft Version ID: 1.18.2
    Operating System: Windows 10 (amd64) version 10.0
    Java Version: 17.0.3.1, Oracle Corporation
    Java VM Version: Java HotSpot(TM) 64-Bit Server VM (mixed mode, sharing), Oracle Corporation
    Memory: 7236154376 bytes (6900 MiB) / 11408506880 bytes (10880 MiB) up to 16777216000 bytes (16000 MiB)
    CPUs: 4
    Processor Vendor: GenuineIntel
    Processor Name: Intel(R) Core(TM) i5-7300HQ CPU @ 2.50GHz
    Identifier: Intel64 Family 6 Model 158 Stepping 9
    Microarchitecture: Kaby Lake
    Frequency (GHz): 2,50
    Number of physical packages: 1
    Number of physical CPUs: 4
    Number of logical CPUs: 4
    Graphics card #0 name: NVIDIA GeForce GTX 1050 Ti
    Graphics card #0 vendor: NVIDIA (0x10de)
    Graphics card #0 VRAM (MB): 4095,00
    Graphics card #0 deviceId: 0x1c8c
    Graphics card #0 versionInfo: DriverVersion=31.0.15.1659
    Graphics card #1 name: Intel(R) HD Graphics 630
    Graphics card #1 vendor: Intel Corporation (0x8086)
    Graphics card #1 VRAM (MB): 1024,00
    Graphics card #1 deviceId: 0x591b
    Graphics card #1 versionInfo: DriverVersion=26.20.100.7325
    Memory slot #0 capacity (MB): 16384,00
    Memory slot #0 clockSpeed (GHz): 2,40
    Memory slot #0 type: DDR4
    Memory slot #1 capacity (MB): 8192,00
    Memory slot #1 clockSpeed (GHz): 2,40
    Memory slot #1 type: DDR4
    Virtual memory max (MB): 58557,02
    Virtual memory used (MB): 24288,58
    Swap memory total (MB): 34096,00
    Swap memory used (MB): 1022,54
    JVM Flags: 9 total; -XX:HeapDumpPath=MojangTricksIntelDriversForPerformance_javaw.exe_minecraft.exe.heapdump -Xss1M -Xmx16000M -XX:+UnlockExperimentalVMOptions -XX:+UseG1GC -XX:G1NewSizePercent=20 -XX:G1ReservePercent=20 -XX:MaxGCPauseMillis=50 -XX:G1HeapRegionSize=32M
    Launched Version: 1.18.2-forge-40.1.54
    Backend library: LWJGL version 3.2.2 SNAPSHOT
    Backend API: NVIDIA GeForce GTX 1050 Ti/PCIe/SSE2 GL version 3.2.0 NVIDIA 516.59, NVIDIA Corporation
    Window size: 1920×1080
    GL Caps: Using framebuffer using OpenGL 3.2
    GL debug messages:
    Using VBOs: Yes
    Is Modded: Definitely; Client brand changed to ‘forge’; Server brand changed to ‘forge’
    Type: Integrated Server (map_client.txt)
    Graphics mode: fast
    Resource Packs: vanilla, file/Copper Legacy Pack.zip, file/Tissou’s Zombie Pack 1.18_2.1.zip, file/guiretextures-darkmode-1.7.4.zip
    Current Language: Türkçe (Türkiye)
    CPU: 4x Intel(R) Core(TM) i5-7300HQ CPU @ 2.50GHz
    Server Running: true
    Player Count: 1 / 8; [ServerPlayer[‘Batuh’/329, l=’ServerLevel[Yeni Dünya]’, x=25.50, y=66.00, z=25.50]]
    Data Packs: vanilla, mod:betterdungeons, mod:supermartijn642configlib, mod:refinedpipes, mod:hammerlib (incompatible), mod:sophisticatedcore (incompatible), mod:neat (incompatible), mod:forgeendertech, mod:cookingforblockheads (incompatible), mod:controlling (incompatible), mod:placebo (incompatible), mod:citadel (incompatible), mod:alexsmobs (incompatible), mod:yungsapi, mod:moreminecarts (incompatible), mod:culinaryconstruct (incompatible), mod:bookshelf, mod:sophisticatedbackpacks (incompatible), mod:simpleplanes (incompatible), mod:apotheosis (incompatible), mod:mekanismgenerators, mod:balm (incompatible), mod:carryon (incompatible), mod:adpother, mod:jeresources (incompatible), mod:ninjaphenix_container_lib (incompatible), mod:mob_grinding_utils (incompatible), mod:refinedstorage, mod:upgradednetherite (incompatible), mod:chipped (incompatible), mod:industrialforegoing (incompatible), mod:farmersdelight (incompatible), mod:morevillagers (incompatible), mod:bcc (incompatible), mod:biomesoplenty (incompatible), mod:ironfurnaces (incompatible), mod:wirelesschargers, mod:supermartijn642corelib, mod:spark (incompatible), mod:solarflux (incompatible), mod:curios (incompatible), mod:tetra (incompatible), mod:patchouli (incompatible), mod:easypaxel (incompatible), mod:oreexcavation, mod:nuclearscience (incompatible), mod:lostcities (incompatible), mod:betterstrongholds, mod:expandedstorage, mod:mekanismtools, mod:constructionwand, mod:cfm, mod:architectury (incompatible), mod:curiouselytra (incompatible), mod:framework (incompatible), mod:bettermineshafts, mod:cyclic, mod:quarkoddities (incompatible), mod:cucumber, mod:ftblibrary (incompatible), mod:ftbranks (incompatible), mod:cgm, mod:jei (incompatible), mod:projecte, mod:mekanism, mod:caelus (incompatible), mod:ringsofascension (incompatible), mod:waystones (incompatible), mod:journeymap, mod:comforts (incompatible), mod:artifacts, mod:storagenetwork (incompatible), mod:sereneseasons (incompatible), mod:configured (incompatible), mod:modularforcefields (incompatible), mod:decorative_blocks, mod:dungeoncrawl, mod:betteranimalsplus (incompatible), mod:pneumaticcraft, mod:mcjtylib (incompatible), mod:rftoolsbase (incompatible), mod:rftoolsstorage (incompatible), mod:rftoolsdim (incompatible), mod:electrodynamics (incompatible), mod:rftoolspower (incompatible), mod:forge, mod:selene (incompatible), mod:mysticalagriculture, mod:zerocore, mod:bigreactors, mod:useless_sword, mod:cofh_core, mod:thermal, mod:thermal_integration, mod:thermal_innovation, mod:thermal_expansion, mod:thermal_locomotion (incompatible), mod:tconstruct (incompatible), mod:rftoolsutility (incompatible), mod:enchdesc (incompatible), mod:theoneprobe (incompatible), mod:ae2 (incompatible), mod:terrablender (incompatible), mod:mousetweaks (incompatible), mod:titanium (incompatible), mod:immersiveengineering, mod:adlods, mod:nethersdelight (incompatible), mod:rftoolsbuilder (incompatible), mod:flywheel (incompatible), mod:create, mod:mutil (incompatible), mod:mantle (incompatible), mod:thermal_cultivation, mod:justenoughprofessions (incompatible), mod:autoreglib (incompatible), mod:quark (incompatible), mod:securitycraft (incompatible), mod:storagedrawers (incompatible), mod:upgradedcore (incompatible), mod:appleskin (incompatible), mod:upgradednetherite_ultimate (incompatible), mod:aquaculture (incompatible), mod:expandability (incompatible), mod:cosmeticarmorreworked (incompatible), mod:chiselsandbits (incompatible), mod:createaddition (incompatible), Solar Flux Generated Resources
    World Generation: Stable
    OptiFine Version: OptiFine_1.18.2_HD_U_H7
    OptiFine Build: 20220410-185216
    Render Distance Chunks: 2
    Mipmaps: 4
    Anisotropic Filtering: 1
    Antialiasing: 0
    Multitexture: false
    Shaders: null
    OpenGlVersion: 3.2.0 NVIDIA 516.59
    OpenGlRenderer: NVIDIA GeForce GTX 1050 Ti/PCIe/SSE2
    OpenGlVendor: NVIDIA Corporation
    CpuCount: 4
    ModLauncher: 9.1.3+9.1.3+main.9b69c82a
    ModLauncher launch target: forgeclient
    ModLauncher naming: srg
    ModLauncher services:
         mixin PLUGINSERVICE
         eventbus PLUGINSERVICE
         slf4jfixer PLUGINSERVICE
         object_holder_definalize PLUGINSERVICE
         runtime_enum_extender PLUGINSERVICE
         capability_token_subclass PLUGINSERVICE
         accesstransformer PLUGINSERVICE
         runtimedistcleaner PLUGINSERVICE
         mixin TRANSFORMATIONSERVICE
         OptiFine TRANSFORMATIONSERVICE
         fml TRANSFORMATIONSERVICE
    FML Language Providers:
        minecraft@1.0
        lowcodefml@null
        javafml@null
    Mod List:
        YungsBetterDungeons-1.18.2-Forge-2.1.0.jar        |YUNG’s Better Dungeons        |betterdungeons                |1.18.2-Forge-2.1.0  |DONE      |Manifest: NOSIGNATURE
        supermartijn642configlib-1.1.3-forge-mc1.18.jar   |SuperMartijn642’s Config Libra|supermartijn642configlib      |1.1.3               |DONE      |Manifest: NOSIGNATURE
        refinedpipes-0.6.2.jar                            |Refined Pipes                 |refinedpipes                  |0.6.2               |DONE      |Manifest: NOSIGNATURE
        HammerLib-1.18.2-18.2.16.jar                      |HammerLib                     |hammerlib                     |18.2.16             |DONE      |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
        sophisticatedcore-1.18.2-0.3.1.39.jar             |Sophisticated Core            |sophisticatedcore             |1.18.2-0.3.1.39     |DONE      |Manifest: NOSIGNATURE
        Neat 1.8-30.jar                                   |Neat                          |neat                          |1.8-30              |DONE      |Manifest: NOSIGNATURE
        ForgeEndertech-1.18.2-9.0.2.0-build.0935.jar      |ForgeEndertech                |forgeendertech                |9.0.2.0             |DONE      |Manifest: NOSIGNATURE
        cookingforblockheads-forge-1.18.2-12.0.1.jar      |CookingForBlockheads          |cookingforblockheads          |12.0.1              |DONE      |Manifest: NOSIGNATURE
        Controlling-forge-1.18.2-9.0+19.jar               |Controlling                   |controlling                   |9.0+19              |DONE      |Manifest: NOSIGNATURE
        Placebo-1.18.2-6.4.0.jar                          |Placebo                       |placebo                       |6.4.0               |DONE      |Manifest: NOSIGNATURE
        citadel-1.11.3-1.18.2.jar                         |Citadel                       |citadel                       |1.11.3              |DONE      |Manifest: NOSIGNATURE
        alexsmobs-1.18.3.jar                              |Alex’s Mobs                   |alexsmobs                     |1.18.3              |DONE      |Manifest: NOSIGNATURE
        YungsApi-1.18.2-Forge-2.0.8.jar                   |YUNG’s API                    |yungsapi                      |1.18.2-Forge-2.0.8  |DONE      |Manifest: NOSIGNATURE
        moreminecarts-1.4.6.jar                           |More Minecarts                |moreminecarts                 |1.4.6               |DONE      |Manifest: NOSIGNATURE
        culinaryconstruct-forge-1.18.2-4.3.1.0.jar        |Culinary Construct            |culinaryconstruct             |1.18.2-4.3.1.0      |DONE      |Manifest: NOSIGNATURE
        Bookshelf-Forge-1.18.2-13.2.20.jar                |Bookshelf                     |bookshelf                     |13.2.20             |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.18.2-3.17.4.592.jar      |Sophisticated Backpacks       |sophisticatedbackpacks        |1.18.2-3.17.4.592   |DONE      |Manifest: NOSIGNATURE
        simpleplanes-1.18.2-4.13.4.jar                    |Simple Planes                 |simpleplanes                  |1.18.2-4.13.4       |DONE      |Manifest: NOSIGNATURE
        Apotheosis-1.18.2-5.3.5.jar                       |Apotheosis                    |apotheosis                    |5.3.5               |DONE      |Manifest: NOSIGNATURE
        MekanismGenerators-1.18.2-10.2.3.463.jar          |Mekanism: Generators          |mekanismgenerators            |10.2.3              |DONE      |Manifest: NOSIGNATURE
        balm-3.0.3+0.jar                                  |Balm                          |balm                          |3.0.3+0             |DONE      |Manifest: NOSIGNATURE
        carryon-1.18.2-1.17.0.8.jar                       |Carry On                      |carryon                       |1.17.0.8            |DONE      |Manifest: NOSIGNATURE
        AdPother-1.18.2-6.0.2.1-build.0943.jar            |Pollution of the Realms       |adpother                      |6.0.2.1             |DONE      |Manifest: NOSIGNATURE
        JustEnoughResources-1.18.2-0.14.1.170.jar         |Just Enough Resources         |jeresources                   |0.14.1.170          |DONE      |Manifest: NOSIGNATURE
        ninjaphenix-container-library-1.3.0+1.18-forge.jar|NinjaPhenix’s Container Librar|ninjaphenix_container_lib     |1.3.0               |DONE      |Manifest: NOSIGNATURE
        mob_grinding_utils-1.18.2-0.4.39.jar              |Mob Grinding Utils            |mob_grinding_utils            |1.18.2-0.4.39       |DONE      |Manifest: NOSIGNATURE
        refinedstorage-1.10.2.jar                         |Refined Storage               |refinedstorage                |1.10.2              |DONE      |Manifest: NOSIGNATURE
        upgradednetherite-1.18.2-4.2.0.6-release.jar      |Upgraded Netherite            |upgradednetherite             |1.18.2-4.2.0.6-relea|DONE      |Manifest: NOSIGNATURE
        chipped-1.18.2-1.2.1-forge.jar                    |Chipped                       |chipped                       |1.18.2-1.2.1-forge  |DONE      |Manifest: NOSIGNATURE
        industrial-foregoing-1.18.2-3.3.1.1-3.jar         |Industrial Foregoing          |industrialforegoing           |3.3.1.1             |DONE      |Manifest: NOSIGNATURE
        FarmersDelight-1.18.2-1.1.1.jar                   |Farmer’s Delight              |farmersdelight                |1.18.2-1.1.1        |DONE      |Manifest: NOSIGNATURE
        morevillagers-FORGE-1.18.2-3.2.0.jar              |More Villagers                |morevillagers                 |3.2.0               |DONE      |Manifest: NOSIGNATURE
        BetterCompatibilityChecker-1.1.14-build.26+mc1.18.|Better Compatibility Checker  |bcc                           |1.1.14-build.26+mc1.|DONE      |Manifest: NOSIGNATURE
        BiomesOPlenty-1.18.2-16.0.0.109-universal(1).jar  |Biomes O’ Plenty              |biomesoplenty                 |1.18.2-16.0.0.109   |DONE      |Manifest: NOSIGNATURE
        ironfurnaces-1.18.2-3.3.1.jar                     |Iron Furnaces                 |ironfurnaces                  |3.3.1               |DONE      |Manifest: NOSIGNATURE
        wirelesschargers-1.0.6-forge-mc1.18.jar           |Wireless Chargers             |wirelesschargers              |1.0.6               |DONE      |Manifest: NOSIGNATURE
        supermartijn642corelib-1.0.18-forge-mc1.18.jar    |SuperMartijn642’s Core Lib    |supermartijn642corelib        |1.0.18              |DONE      |Manifest: NOSIGNATURE
        spark-1.9.11-forge.jar                            |spark                         |spark                         |1.9.11              |DONE      |Manifest: NOSIGNATURE
        SolarFluxReborn-1.18.2-18.2.4.jar                 |Solar Flux Reborn             |solarflux                     |18.2.4              |DONE      |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
        curios-forge-1.18.2-5.0.7.0.jar                   |Curios API                    |curios                        |1.18.2-5.0.7.0      |DONE      |Manifest: NOSIGNATURE
        tetra-1.18.2-4.9.3.jar                            |Tetra                         |tetra                         |4.9.3               |DONE      |Manifest: NOSIGNATURE
        Patchouli-1.18.2-69.jar                           |Patchouli                     |patchouli                     |0.0NONE             |DONE      |Manifest: NOSIGNATURE
        EasyPaxel1.18.2(FORGE)vs1.0.11.jar                |Easy Paxel                    |easypaxel                     |1.18.2-1.0.11       |DONE      |Manifest: NOSIGNATURE
        OreExcavation-1.10.161.jar                        |OreExcavation                 |oreexcavation                 |1.10.161            |DONE      |Manifest: NOSIGNATURE
        Nuclear Science-1.18.2-0.4.8-10.jar               |Nuclear Science               |nuclearscience                |1.18.2-0.4.8-10     |DONE      |Manifest: NOSIGNATURE
        lostcities-1.18-5.2.4.jar                         |LostCities                    |lostcities                    |1.18-5.2.4          |DONE      |Manifest: NOSIGNATURE
        YungsBetterStrongholds-1.18.2-Forge-2.1.1.jar     |YUNG’s Better Strongholds     |betterstrongholds             |1.18.2-Forge-2.1.1  |DONE      |Manifest: NOSIGNATURE
        expandedstorage-7.3.11+1.18.2.jar                 |Expanded Storage              |expandedstorage               |7.3.11              |DONE      |Manifest: NOSIGNATURE
        MekanismTools-1.18.2-10.2.3.463.jar               |Mekanism: Tools               |mekanismtools                 |10.2.3              |DONE      |Manifest: NOSIGNATURE
        constructionwand-1.18.2-2.7.jar                   |Construction Wand             |constructionwand              |1.18.2-2.7          |DONE      |Manifest: NOSIGNATURE
        cfm-7.0.0-pre29-1.18.2.jar                        |MrCrayfish’s Furniture Mod    |cfm                           |7.0.0-pre29         |DONE      |Manifest: NOSIGNATURE
        architectury-4.4.70.jar                           |Architectury                  |architectury                  |4.4.70              |DONE      |Manifest: NOSIGNATURE
        curiouselytra-forge-1.18.1-5.0.1.0.jar            |Curious Elytra                |curiouselytra                 |1.18.1-5.0.1.0      |DONE      |Manifest: NOSIGNATURE
        framework-0.2.3-1.18.2.jar                        |Framework                     |framework                     |0.2.3               |DONE      |Manifest: NOSIGNATURE
        YungsBetterMineshafts-1.18.2-Forge-2.1.3.jar      |YUNG’s Better Mineshafts      |bettermineshafts              |1.18.2-Forge-2.1.3  |DONE      |Manifest: NOSIGNATURE
        Cyclic-1.18.2-1.7.1.jar                           |Cyclic                        |cyclic                        |1.18.2-1.7.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
        QuarkOddities-1.18.jar                            |Quark Oddities                |quarkoddities                 |1.18                |DONE      |Manifest: NOSIGNATURE
        Cucumber-1.18.2-5.1.1.jar                         |Cucumber Library              |cucumber                      |5.1.1               |DONE      |Manifest: NOSIGNATURE
        ftb-library-forge-1802.3.6-build.123.jar          |FTB Library                   |ftblibrary                    |1802.3.6-build.123  |DONE      |Manifest: NOSIGNATURE
        ftb-ranks-forge-1802.1.8-build.34.jar             |FTB Ranks                     |ftbranks                      |1802.1.8-build.34   |DONE      |Manifest: NOSIGNATURE
        cgm-1.2.5-1.18.2.jar                              |MrCrayfish’s Gun Mod          |cgm                           |1.2.5               |DONE      |Manifest: NOSIGNATURE
        jei-1.18.2-9.7.0.196.jar                          |Just Enough Items             |jei                           |9.7.0.196           |DONE      |Manifest: NOSIGNATURE
        ProjectE-1.18.2-PE1.0.1.jar                       |ProjectE                      |projecte                      |1.0.1               |DONE      |Manifest: NOSIGNATURE
        Mekanism-1.18.2-10.2.3.463.jar                    |Mekanism                      |mekanism                      |10.2.3              |DONE      |Manifest: NOSIGNATURE
        caelus-forge-1.18.1-3.0.0.2.jar                   |Caelus API                    |caelus                        |1.18.1-3.0.0.2      |DONE      |Manifest: NOSIGNATURE
        RingsOfAscension-1.18.2-1.0.1.jar                 |Rings of Ascension            |ringsofascension              |1.0.0               |DONE      |Manifest: NOSIGNATURE
        waystones-forge-1.18.2-10.0.0.jar                 |Waystones                     |waystones                     |10.0.0              |DONE      |Manifest: NOSIGNATURE
        journeymap-1.18.2-5.8.5-forge.jar                 |Journeymap                    |journeymap                    |5.8.5               |DONE      |Manifest: NOSIGNATURE
        comforts-forge-1.18.2-5.0.0.4.jar                 |Comforts                      |comforts                      |1.18.2-5.0.0.4      |DONE      |Manifest: NOSIGNATURE
        artifacts-1.18.2-4.0.7.jar                        |Artifacts                     |artifacts                     |1.18.2-4.0.7        |DONE      |Manifest: NOSIGNATURE
        SimpleStorageNetwork-1.18.2-1.6.1.jar             |Simple Storage Network        |storagenetwork                |1.18.2-1.6.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
        Serene Seasons-1.18.2-7.0.0.13.jar                |Serene Seasons                |sereneseasons                 |1.18.2-7.0.0.13     |DONE      |Manifest: NOSIGNATURE
        configured-1.5.3-1.18.2.jar                       |Configured                    |configured                    |1.5.3               |DONE      |Manifest: NOSIGNATURE
        Modular+Forcefields-1.18.2-0.0.1-2.jar            |Modular Forcefields           |modularforcefields            |1.18.2-0.0.1-2      |DONE      |Manifest: NOSIGNATURE
        Decorative Blocks-forge-1.18.2-2.1.0.jar          |Decorative Blocks             |decorative_blocks             |2.1.0               |DONE      |Manifest: NOSIGNATURE
        DungeonCrawl-1.18.2-2.3.8.jar                     |Dungeon Crawl                 |dungeoncrawl                  |2.3.8               |DONE      |Manifest: NOSIGNATURE
        betteranimalsplus-1.18.2-11.0.5-forge.jar         |Better Animals Plus           |betteranimalsplus             |1.18.2-11.0.5       |DONE      |Manifest: NOSIGNATURE
        pneumaticcraft-repressurized-1.18.2-3.2.4-93.jar  |PneumaticCraft: Repressurized |pneumaticcraft                |1.18.2-3.2.4-93     |DONE      |Manifest: NOSIGNATURE
        mcjtylib-1.18-6.0.15.jar                          |McJtyLib                      |mcjtylib                      |1.18-6.0.15         |DONE      |Manifest: NOSIGNATURE
        rftoolsbase-1.18-3.0.9.jar                        |RFToolsBase                   |rftoolsbase                   |1.18-3.0.9          |DONE      |Manifest: NOSIGNATURE
        rftoolsstorage-1.18-3.0.8.jar                     |RFToolsStorage                |rftoolsstorage                |1.18-3.0.8          |DONE      |Manifest: NOSIGNATURE
        rftoolsdim-1.18-8.0.6.jar                         |RFToolsDimensions             |rftoolsdim                    |1.18-8.0.6          |DONE      |Manifest: NOSIGNATURE
        Electrodynamics-1.18.2-0.6.3-10.jar               |Electrodynamics               |electrodynamics               |1.18.2-0.6.3-10     |DONE      |Manifest: NOSIGNATURE
        rftoolspower-1.18-4.0.5.jar                       |RFToolsPower                  |rftoolspower                  |1.18-4.0.5          |DONE      |Manifest: NOSIGNATURE
        forge-1.18.2-40.1.54-universal.jar                |Forge                         |forge                         |40.1.54             |DONE      |Manifest: 84:ce:76:e8:45:35:e4:0e:63:86:df:47:59:80:0f:67:6c:c1:5f:6e:5f:4d:b3:54:47:1a:9f:7f:ed:5e:f2:90
        selene-1.18.2-1.17.5.jar                          |Selene                        |selene                        |1.18.2-1.17.5       |DONE      |Manifest: NOSIGNATURE
        MysticalAgriculture-1.18.2-5.1.0(1).jar           |Mystical Agriculture          |mysticalagriculture           |5.1.0               |DONE      |Manifest: NOSIGNATURE
        ZeroCore2-1.18.2-2.1.17.jar                       |Zero CORE 2                   |zerocore                      |1.18.2-2.1.17       |DONE      |Manifest: NOSIGNATURE
        ExtremeReactors2-1.18.2-2.0.45.jar                |Extreme Reactors              |bigreactors                   |1.18.2-2.0.45       |DONE      |Manifest: NOSIGNATURE
        useless-sword-1.18.2-V1.4.1.jar                   |Useless Sword                 |useless_sword                 |1.4.1               |DONE      |Manifest: NOSIGNATURE
        client-1.18.2-20220404.173914-srg.jar             |Minecraft                     |minecraft                     |1.18.2              |DONE      |Manifest: a1:d4:5e:04:4f:d3:d6:e0:7b:37:97:cf:77:b0:de:ad:4a:47:ce:8c:96:49:5f:0a:cf:8c:ae:b2:6d:4b:8a:3f
        cofh_core-1.18.2-1.6.3.19.jar                     |CoFH Core                     |cofh_core                     |1.6.3.19            |DONE      |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.18.2-1.6.2.27.jar            |Thermal Series                |thermal                       |1.6.2.27            |DONE      |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_integration-1.18.2-1.6.0.6.jar            |Thermal Integration           |thermal_integration           |1.6.0.6             |DONE      |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.18.2-1.6.1.10.jar            |Thermal Innovation            |thermal_innovation            |1.6.1.10            |DONE      |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.18.2-1.6.1.11.jar             |Thermal Expansion             |thermal_expansion             |1.6.1.11            |DONE      |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.18.2-1.6.0.6.jar             |Thermal Locomotion            |thermal_locomotion            |1.6.0.6             |DONE      |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.18.2-3.5.0.17.jar                    |Tinkers’ Construct            |tconstruct                    |3.5.0.17            |DONE      |Manifest: NOSIGNATURE
        rftoolsutility-1.18-4.0.16.jar                    |RFToolsUtility                |rftoolsutility                |1.18-4.0.16         |DONE      |Manifest: NOSIGNATURE
        EnchantmentDescriptions-Forge-1.18.2-10.0.3.jar   |EnchantmentDescriptions       |enchdesc                      |10.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
        theoneprobe-1.18-5.1.0.jar                        |The One Probe                 |theoneprobe                   |1.18-5.1.0          |DONE      |Manifest: NOSIGNATURE
        appliedenergistics2-11.1.2.jar                    |Applied Energistics 2         |ae2                           |11.1.2              |DONE      |Manifest: NOSIGNATURE
        TerraBlender-forge-1.18.2-1.1.0.102.jar           |TerraBlender                  |terrablender                  |1.18.2-1.1.0.102    |DONE      |Manifest: NOSIGNATURE
        MouseTweaks-forge-mc1.18-2.21.jar                 |Mouse Tweaks                  |mousetweaks                   |2.21                |DONE      |Manifest: NOSIGNATURE
        titanium-1.18.2-3.5.6-38.jar                      |Titanium                      |titanium                      |3.5.6               |DONE      |Manifest: NOSIGNATURE
        ImmersiveEngineering-1.18.2-8.0.2-149.jar         |Immersive Engineering         |immersiveengineering          |1.18.2-8.0.2-149    |DONE      |Manifest: NOSIGNATURE
        AdLods-1.18.2-6.0.0.0-build.0342.jar              |Large Ore Deposits            |adlods                        |6.0.0.0             |DONE      |Manifest: NOSIGNATURE
        NethersDelight-1.18.2-2.2.0.jar                   |Nethers Delight               |nethersdelight                |2.2                 |DONE      |Manifest: NOSIGNATURE
        rftoolsbuilder-1.18-4.0.12.jar                    |RFToolsBuilder                |rftoolsbuilder                |1.18-4.0.12         |DONE      |Manifest: NOSIGNATURE
        flywheel-forge-1.18-0.6.2.jar                     |Flywheel                      |flywheel                      |1.18-0.6.2          |DONE      |Manifest: NOSIGNATURE
        create-mc1.18.2_v0.4.1.jar                        |Create                        |create                        |0.4.1               |DONE      |Manifest: NOSIGNATURE
        mutil-1.18.2-4.5.0.jar                            |mutil                         |mutil                         |4.5.0               |DONE      |Manifest: NOSIGNATURE
        Mantle-1.18.2-1.9.20.jar                          |Mantle                        |mantle                        |1.9.20              |DONE      |Manifest: NOSIGNATURE
        thermal_cultivation-1.18.2-1.6.1.9.jar            |Thermal Cultivation           |thermal_cultivation           |1.6.1.9             |DONE      |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
        JustEnoughProfessions-1.18.2-1.2.2.jar            |Just Enough Professions (JEP) |justenoughprofessions         |1.2.2               |DONE      |Manifest: NOSIGNATURE
        AutoRegLib-1.7-53.jar                             |AutoRegLib                    |autoreglib                    |1.7-53              |DONE      |Manifest: NOSIGNATURE
        Quark-3.2-357.jar                                 |Quark                         |quark                         |3.2-357             |DONE      |Manifest: NOSIGNATURE
        [1.18.2] SecurityCraft v1.9.2.jar                 |SecurityCraft                 |securitycraft                 |1.9.2               |DONE      |Manifest: NOSIGNATURE
        StorageDrawers-1.18.2-10.2.1.jar                  |Storage Drawers               |storagedrawers                |10.2.1              |DONE      |Manifest: NOSIGNATURE
        upgradedcore-1.18.2-3.2.0.0-release.jar           |Upgraded Core                 |upgradedcore                  |1.18.2-3.2.0.0-relea|DONE      |Manifest: NOSIGNATURE
        appleskin-forge-mc1.18-2.4.0.jar                  |AppleSkin                     |appleskin                     |2.4.0+mc1.18        |DONE      |Manifest: NOSIGNATURE
        upgradednetherite_ultimate-1.18.2-3.2.0.1-release.|Upgraded Netherite : Ultimerit|upgradednetherite_ultimate    |1.18.2-3.2.0.1-relea|DONE      |Manifest: NOSIGNATURE
        Aquaculture-1.18.2-2.3.6.jar                      |Aquaculture 2                 |aquaculture                   |1.18.2-2.3.6        |DONE      |Manifest: NOSIGNATURE
        expandability-6.0.0.jar                           |ExpandAbility                 |expandability                 |6.0.0               |DONE      |Manifest: NOSIGNATURE
        CosmeticArmorReworked-1.18.2-v2.jar               |CosmeticArmorReworked         |cosmeticarmorreworked         |1.18.2-v2           |DONE      |Manifest: 5e:ed:25:99:e4:44:14:c0:dd:89:c1:a9:4c:10:b5:0d:e4:b1:52:50:45:82:13:d8:d0:32:89:67:56:57:01:53
        ChiselsBits-forge-1.18.2-1.2.90-universal.jar     |Chisels & bits                |chiselsandbits                |1.2.90              |DONE      |Manifest: NOSIGNATURE
        createaddition-1.18.2-20220517a.jar               |Create Crafts & Additions     |createaddition                |1.18.2-20220517a    |DONE      |Manifest: NOSIGNATURE
    Crash Report UUID: 0cd94391-5282-4695-b3ff-ecbeafb18fd4
    FML: 40.1
    Forge: net.minecraftforge:40.1.54
    Flywheel Backend: GL33 Instanced Arrays

Каждый раз после 3-4 минут на сервере у всех игроков вылетает с ошибкой: Internal exception: java.io.IOException: Received string length longer than maximum allowed (18 > 16) 1.5.2 Баккит ядро. С хоста, сам я ядро не трогал. Плагином на увеличения ника и прибавления ничего нету кроме чат менеджера.
  • Фото пользователя

    6 февраля 2016 — 13:56

DRUZHKINSKIJ - скорее игроков не выкидывает, а зайти не могут.  И это связанно с плагином который отвечает за ники игроков.  allowed (18 > 16)
  • Фото пользователя Максим

    Максим

    6 февраля 2016 — 14:14

АНТОН ЛБЕРЕЦКИЙ а именно цветные ники элементы типа &1 увеличивают длину строки а она ограниченная 
  • Фото пользователя

    6 февраля 2016 — 14:24

МАКСИМ ZIGO цветные ники , а еще плагины на кланы с огромными префиксами.

—- Minecraft Crash Report —-
// Who set us up the TNT?

Time: 1.07.2022 15:53
Description: Ticking entity

io.netty.handler.codec.EncoderException: String too big (was 37355 bytes encoded, max 32767)
    at net.minecraft.network.FriendlyByteBuf.m_130072_(FriendlyByteBuf.java:509) ~[client-1.18.2-20220404.173914-srg.jar%23178!/:?] {re:classloading,re:mixin}
    at net.minecraft.network.FriendlyByteBuf.m_130070_(FriendlyByteBuf.java:503) ~[client-1.18.2-20220404.173914-srg.jar%23178!/:?] {re:classloading,re:mixin}
    at electrodynamics.common.packet.types.PacketPlayerInformation.encode(PacketPlayerInformation.java:41) ~[Electrodynamics-1.18.2-0.6.3-10.jar%2393!/:1.18.2-0.6.3-10] {re:classloading}
    at net.minecraftforge.network.simple.IndexedMessageCodec.lambda$tryEncode$4(IndexedMessageCodec.java:121) ~[forge-1.18.2-40.1.54-universal.jar%23183!/:?] {re:classloading}
    at java.util.Optional.ifPresent(Optional.java:178) ~[?:?] {re:mixin}
    at net.minecraftforge.network.simple.IndexedMessageCodec.tryEncode(IndexedMessageCodec.java:119) ~[forge-1.18.2-40.1.54-universal.jar%23183!/:?] {re:classloading}
    at net.minecraftforge.network.simple.IndexedMessageCodec.build(IndexedMessageCodec.java:134) ~[forge-1.18.2-40.1.54-universal.jar%23183!/:?] {re:classloading}
    at net.minecraftforge.network.simple.SimpleChannel.encodeMessage(SimpleChannel.java:77) ~[forge-1.18.2-40.1.54-universal.jar%23183!/:?] {re:mixin,re:classloading}
    at net.minecraftforge.network.simple.SimpleChannel.toBuffer(SimpleChannel.java:90) ~[forge-1.18.2-40.1.54-universal.jar%23183!/:?] {re:mixin,re:classloading}
    at net.minecraftforge.network.simple.SimpleChannel.toVanillaPacket(SimpleChannel.java:121) ~[forge-1.18.2-40.1.54-universal.jar%23183!/:?] {re:mixin,re:classloading}
    at net.minecraftforge.network.simple.SimpleChannel.sendTo(SimpleChannel.java:101) ~[forge-1.18.2-40.1.54-universal.jar%23183!/:?] {re:mixin,re:classloading}
    at net.minecraftforge.network.simple.SimpleChannel.sendToServer(SimpleChannel.java:96) ~[forge-1.18.2-40.1.54-universal.jar%23183!/:?] {re:mixin,re:classloading}
    at electrodynamics.common.event.PlayerHandler.tick(PlayerHandler.java:43) ~[Electrodynamics-1.18.2-0.6.3-10.jar%2393!/:1.18.2-0.6.3-10] {re:classloading}
    at net.minecraftforge.eventbus.ASMEventHandler_767_PlayerHandler_tick_PlayerTickEvent.invoke(.dynamic) ~[?:?] {}
    at net.minecraftforge.eventbus.ASMEventHandler.invoke(ASMEventHandler.java:85) ~[eventbus-5.0.3.jar%232!/:?] {}
    at net.minecraftforge.eventbus.EventBus.post(EventBus.java:302) ~[eventbus-5.0.3.jar%232!/:?] {}
    at net.minecraftforge.eventbus.EventBus.post(EventBus.java:283) ~[eventbus-5.0.3.jar%232!/:?] {}
    at net.minecraftforge.event.ForgeEventFactory.onPlayerPreTick(ForgeEventFactory.java:860) ~[forge-1.18.2-40.1.54-universal.jar%23183!/:?] {re:classloading}
    at net.minecraft.world.entity.player.Player.m_8119_(Player.java:208) ~[client-1.18.2-20220404.173914-srg.jar%23178!/:?] {re:computing_frames,pl:accesstransformer:B,re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:apotheosis.mixins.json:PlayerMixin,pl:mixin:APP:chiselsandbits.mixins.json:client.PlayerScopingMixin,pl:mixin:APP:expandability.mixins.json:swimming.PlayerMixin,pl:mixin:APP:tetra.mixins.json:MixinPlayerEntity,pl:mixin:A}
    at net.minecraft.client.player.LocalPlayer.m_8119_(LocalPlayer.java:183) ~[client-1.18.2-20220404.173914-srg.jar%23178!/:?] {re:computing_frames,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:mixin,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,pl:mixin:APP:caelus.mixins.json:MixinLocalPlayer,pl:mixin:APP:chiselsandbits.mixins.json:client.LocalPlayerScopingMixin,pl:mixin:APP:expandability.mixins.json:swimming.client.LocalPlayerMixin,pl:mixin:APP:create.mixins.json:HeavyBootsOnPlayerMixin,pl:mixin:A,pl:runtimedistcleaner:A}
    at net.minecraft.client.multiplayer.ClientLevel.m_104639_(ClientLevel.java:269) ~[client-1.18.2-20220404.173914-srg.jar%23178!/:?] {re:mixin,xf:OptiFine:default,re:classloading,xf:OptiFine:default,pl:mixin:APP:architectury.mixins.json:MixinClientLevel,pl:mixin:APP:flywheel.mixins.json:ClientLevelMixin,pl:mixin:APP:create.mixins.json:DestroyProgressMixin,pl:mixin:A}
    at net.minecraft.world.level.Level.m_46653_(Level.java:486) ~[client-1.18.2-20220404.173914-srg.jar%23178!/:?] {re:computing_frames,pl:accesstransformer:B,re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:mixins.hammerlib.json:LevelMixin,pl:mixin:APP:sereneseasons.mixins.json:MixinLevel,pl:mixin:A}
    at net.minecraft.client.multiplayer.ClientLevel.lambda$tickEntities$4(ClientLevel.java:246) ~[client-1.18.2-20220404.173914-srg.jar%23178!/:?] {re:mixin,xf:OptiFine:default,re:classloading,xf:OptiFine:default,pl:mixin:APP:architectury.mixins.json:MixinClientLevel,pl:mixin:APP:flywheel.mixins.json:ClientLevelMixin,pl:mixin:APP:create.mixins.json:DestroyProgressMixin,pl:mixin:A}
    at net.minecraft.world.level.entity.EntityTickList.m_156910_(EntityTickList.java:54) ~[client-1.18.2-20220404.173914-srg.jar%23178!/:?] {re:classloading}
    at net.minecraft.client.multiplayer.ClientLevel.m_104804_(ClientLevel.java:242) ~[client-1.18.2-20220404.173914-srg.jar%23178!/:?] {re:mixin,xf:OptiFine:default,re:classloading,xf:OptiFine:default,pl:mixin:APP:architectury.mixins.json:MixinClientLevel,pl:mixin:APP:flywheel.mixins.json:ClientLevelMixin,pl:mixin:APP:create.mixins.json:DestroyProgressMixin,pl:mixin:A}
    at net.minecraft.client.Minecraft.m_91398_(Minecraft.java:1691) ~[client-1.18.2-20220404.173914-srg.jar%23178!/:?] {re:mixin,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,pl:mixin:APP:ae2.mixins.json:PickColorMixin,pl:mixin:APP:architectury.mixins.json:MixinMinecraft,pl:mixin:APP:balm.mixins.json:MinecraftMixin,pl:mixin:APP:bookshelf.common.mixins.json:client.AccessorMinecraft,pl:mixin:APP:flywheel.mixins.json:PausedPartialTickAccessor,pl:mixin:APP:immersiveengineering.mixins.json:accessors.client.MinecraftAccess,pl:mixin:APP:create.mixins.json:WindowResizeMixin,pl:mixin:APP:securitycraft.mixins.json:camera.MinecraftMixin,pl:mixin:A,pl:runtimedistcleaner:A}
    at net.minecraft.client.Minecraft.m_91383_(Minecraft.java:1019) ~[client-1.18.2-20220404.173914-srg.jar%23178!/:?] {re:mixin,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,pl:mixin:APP:ae2.mixins.json:PickColorMixin,pl:mixin:APP:architectury.mixins.json:MixinMinecraft,pl:mixin:APP:balm.mixins.json:MinecraftMixin,pl:mixin:APP:bookshelf.common.mixins.json:client.AccessorMinecraft,pl:mixin:APP:flywheel.mixins.json:PausedPartialTickAccessor,pl:mixin:APP:immersiveengineering.mixins.json:accessors.client.MinecraftAccess,pl:mixin:APP:create.mixins.json:WindowResizeMixin,pl:mixin:APP:securitycraft.mixins.json:camera.MinecraftMixin,pl:mixin:A,pl:runtimedistcleaner:A}
    at net.minecraft.client.Minecraft.m_91374_(Minecraft.java:663) ~[client-1.18.2-20220404.173914-srg.jar%23178!/:?] {re:mixin,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,pl:mixin:APP:ae2.mixins.json:PickColorMixin,pl:mixin:APP:architectury.mixins.json:MixinMinecraft,pl:mixin:APP:balm.mixins.json:MinecraftMixin,pl:mixin:APP:bookshelf.common.mixins.json:client.AccessorMinecraft,pl:mixin:APP:flywheel.mixins.json:PausedPartialTickAccessor,pl:mixin:APP:immersiveengineering.mixins.json:accessors.client.MinecraftAccess,pl:mixin:APP:create.mixins.json:WindowResizeMixin,pl:mixin:APP:securitycraft.mixins.json:camera.MinecraftMixin,pl:mixin:A,pl:runtimedistcleaner:A}
    at net.minecraft.client.main.Main.main(Main.java:205) ~[client-1.18.2-20220404.173914-srg.jar%23178!/:?] {re:classloading,pl:runtimedistcleaner:A}
    at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:?] {}
    at jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) ~[?:?] {}
    at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:?] {}
    at java.lang.reflect.Method.invoke(Method.java:568) ~[?:?] {}
    at net.minecraftforge.fml.loading.targets.CommonClientLaunchHandler.lambda$launchService$0(CommonClientLaunchHandler.java:31) ~[fmlloader-1.18.2-40.1.54.jar%2316!/:?] {}
    at cpw.mods.modlauncher.LaunchServiceHandlerDecorator.launch(LaunchServiceHandlerDecorator.java:37) [modlauncher-9.1.3.jar%235!/:?] {}
    at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:53) [modlauncher-9.1.3.jar%235!/:?] {}
    at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:71) [modlauncher-9.1.3.jar%235!/:?] {}
    at cpw.mods.modlauncher.Launcher.run(Launcher.java:106) [modlauncher-9.1.3.jar%235!/:?] {}
    at cpw.mods.modlauncher.Launcher.main(Launcher.java:77) [modlauncher-9.1.3.jar%235!/:?] {}
    at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:26) [modlauncher-9.1.3.jar%235!/:?] {}
    at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:23) [modlauncher-9.1.3.jar%235!/:?] {}
    at cpw.mods.bootstraplauncher.BootstrapLauncher.main(BootstrapLauncher.java:149) [bootstraplauncher-1.0.0.jar:?] {}


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

— Head —
Thread: Render thread
Stacktrace:
    at net.minecraft.network.FriendlyByteBuf.m_130072_(FriendlyByteBuf.java:509) ~[client-1.18.2-20220404.173914-srg.jar%23178!/:?] {re:classloading,re:mixin}
    at net.minecraft.network.FriendlyByteBuf.m_130070_(FriendlyByteBuf.java:503) ~[client-1.18.2-20220404.173914-srg.jar%23178!/:?] {re:classloading,re:mixin}
    at electrodynamics.common.packet.types.PacketPlayerInformation.encode(PacketPlayerInformation.java:41) ~[Electrodynamics-1.18.2-0.6.3-10.jar%2393!/:1.18.2-0.6.3-10] {re:classloading}
    at net.minecraftforge.network.simple.IndexedMessageCodec.lambda$tryEncode$4(IndexedMessageCodec.java:121) ~[forge-1.18.2-40.1.54-universal.jar%23183!/:?] {re:classloading}
    at java.util.Optional.ifPresent(Optional.java:178) ~[?:?] {re:mixin}
    at net.minecraftforge.network.simple.IndexedMessageCodec.tryEncode(IndexedMessageCodec.java:119) ~[forge-1.18.2-40.1.54-universal.jar%23183!/:?] {re:classloading}
    at net.minecraftforge.network.simple.IndexedMessageCodec.build(IndexedMessageCodec.java:134) ~[forge-1.18.2-40.1.54-universal.jar%23183!/:?] {re:classloading}
    at net.minecraftforge.network.simple.SimpleChannel.encodeMessage(SimpleChannel.java:77) ~[forge-1.18.2-40.1.54-universal.jar%23183!/:?] {re:mixin,re:classloading}
    at net.minecraftforge.network.simple.SimpleChannel.toBuffer(SimpleChannel.java:90) ~[forge-1.18.2-40.1.54-universal.jar%23183!/:?] {re:mixin,re:classloading}
    at net.minecraftforge.network.simple.SimpleChannel.toVanillaPacket(SimpleChannel.java:121) ~[forge-1.18.2-40.1.54-universal.jar%23183!/:?] {re:mixin,re:classloading}
    at net.minecraftforge.network.simple.SimpleChannel.sendTo(SimpleChannel.java:101) ~[forge-1.18.2-40.1.54-universal.jar%23183!/:?] {re:mixin,re:classloading}
    at net.minecraftforge.network.simple.SimpleChannel.sendToServer(SimpleChannel.java:96) ~[forge-1.18.2-40.1.54-universal.jar%23183!/:?] {re:mixin,re:classloading}
    at electrodynamics.common.event.PlayerHandler.tick(PlayerHandler.java:43) ~[Electrodynamics-1.18.2-0.6.3-10.jar%2393!/:1.18.2-0.6.3-10] {re:classloading}
    at net.minecraftforge.eventbus.ASMEventHandler_767_PlayerHandler_tick_PlayerTickEvent.invoke(.dynamic) ~[?:?] {}
    at net.minecraftforge.eventbus.ASMEventHandler.invoke(ASMEventHandler.java:85) ~[eventbus-5.0.3.jar%232!/:?] {}
    at net.minecraftforge.eventbus.EventBus.post(EventBus.java:302) ~[eventbus-5.0.3.jar%232!/:?] {}
    at net.minecraftforge.eventbus.EventBus.post(EventBus.java:283) ~[eventbus-5.0.3.jar%232!/:?] {}
    at net.minecraftforge.event.ForgeEventFactory.onPlayerPreTick(ForgeEventFactory.java:860) ~[forge-1.18.2-40.1.54-universal.jar%23183!/:?] {re:classloading}
    at net.minecraft.world.entity.player.Player.m_8119_(Player.java:208) ~[client-1.18.2-20220404.173914-srg.jar%23178!/:?] {re:computing_frames,pl:accesstransformer:B,re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:apotheosis.mixins.json:PlayerMixin,pl:mixin:APP:chiselsandbits.mixins.json:client.PlayerScopingMixin,pl:mixin:APP:expandability.mixins.json:swimming.PlayerMixin,pl:mixin:APP:tetra.mixins.json:MixinPlayerEntity,pl:mixin:A}
    at net.minecraft.client.player.LocalPlayer.m_8119_(LocalPlayer.java:183) ~[client-1.18.2-20220404.173914-srg.jar%23178!/:?] {re:computing_frames,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:mixin,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,pl:mixin:APP:caelus.mixins.json:MixinLocalPlayer,pl:mixin:APP:chiselsandbits.mixins.json:client.LocalPlayerScopingMixin,pl:mixin:APP:expandability.mixins.json:swimming.client.LocalPlayerMixin,pl:mixin:APP:create.mixins.json:HeavyBootsOnPlayerMixin,pl:mixin:A,pl:runtimedistcleaner:A}
    at net.minecraft.client.multiplayer.ClientLevel.m_104639_(ClientLevel.java:269) ~[client-1.18.2-20220404.173914-srg.jar%23178!/:?] {re:mixin,xf:OptiFine:default,re:classloading,xf:OptiFine:default,pl:mixin:APP:architectury.mixins.json:MixinClientLevel,pl:mixin:APP:flywheel.mixins.json:ClientLevelMixin,pl:mixin:APP:create.mixins.json:DestroyProgressMixin,pl:mixin:A}
    at net.minecraft.world.level.Level.m_46653_(Level.java:486) ~[client-1.18.2-20220404.173914-srg.jar%23178!/:?] {re:computing_frames,pl:accesstransformer:B,re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:mixins.hammerlib.json:LevelMixin,pl:mixin:APP:sereneseasons.mixins.json:MixinLevel,pl:mixin:A}
    at net.minecraft.client.multiplayer.ClientLevel.lambda$tickEntities$4(ClientLevel.java:246) ~[client-1.18.2-20220404.173914-srg.jar%23178!/:?] {re:mixin,xf:OptiFine:default,re:classloading,xf:OptiFine:default,pl:mixin:APP:architectury.mixins.json:MixinClientLevel,pl:mixin:APP:flywheel.mixins.json:ClientLevelMixin,pl:mixin:APP:create.mixins.json:DestroyProgressMixin,pl:mixin:A}
    at net.minecraft.world.level.entity.EntityTickList.m_156910_(EntityTickList.java:54) ~[client-1.18.2-20220404.173914-srg.jar%23178!/:?] {re:classloading}
    at net.minecraft.client.multiplayer.ClientLevel.m_104804_(ClientLevel.java:242) ~[client-1.18.2-20220404.173914-srg.jar%23178!/:?] {re:mixin,xf:OptiFine:default,re:classloading,xf:OptiFine:default,pl:mixin:APP:architectury.mixins.json:MixinClientLevel,pl:mixin:APP:flywheel.mixins.json:ClientLevelMixin,pl:mixin:APP:create.mixins.json:DestroyProgressMixin,pl:mixin:A}
— Entity being ticked —
Details:
    Entity Type: minecraft:player (net.minecraft.client.player.LocalPlayer)
    Entity ID: 329
    Entity Name: Batuh
    Entity’s Exact location: 25.50, 66.00, 25.50
    Entity’s Block location: World: (25,66,25), Section: (at 9,2,9 in 1,4,1; chunk contains blocks 16,-64,16 to 31,319,31), Region: (0,0; contains chunks 0,0 to 31,31, blocks 0,-64,0 to 511,319,511)
    Entity’s Momentum: 0.00, -0.08, 0.00
    Entity’s Passengers: []
    Entity’s Vehicle: null
Stacktrace:
    at net.minecraft.world.level.Level.m_46653_(Level.java:486) ~[client-1.18.2-20220404.173914-srg.jar%23178!/:?] {re:computing_frames,pl:accesstransformer:B,re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:mixins.hammerlib.json:LevelMixin,pl:mixin:APP:sereneseasons.mixins.json:MixinLevel,pl:mixin:A}
    at net.minecraft.client.multiplayer.ClientLevel.lambda$tickEntities$4(ClientLevel.java:246) ~[client-1.18.2-20220404.173914-srg.jar%23178!/:?] {re:mixin,xf:OptiFine:default,re:classloading,xf:OptiFine:default,pl:mixin:APP:architectury.mixins.json:MixinClientLevel,pl:mixin:APP:flywheel.mixins.json:ClientLevelMixin,pl:mixin:APP:create.mixins.json:DestroyProgressMixin,pl:mixin:A}
    at net.minecraft.world.level.entity.EntityTickList.m_156910_(EntityTickList.java:54) ~[client-1.18.2-20220404.173914-srg.jar%23178!/:?] {re:classloading}
    at net.minecraft.client.multiplayer.ClientLevel.m_104804_(ClientLevel.java:242) ~[client-1.18.2-20220404.173914-srg.jar%23178!/:?] {re:mixin,xf:OptiFine:default,re:classloading,xf:OptiFine:default,pl:mixin:APP:architectury.mixins.json:MixinClientLevel,pl:mixin:APP:flywheel.mixins.json:ClientLevelMixin,pl:mixin:APP:create.mixins.json:DestroyProgressMixin,pl:mixin:A}
    at net.minecraft.client.Minecraft.m_91398_(Minecraft.java:1691) ~[client-1.18.2-20220404.173914-srg.jar%23178!/:?] {re:mixin,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,pl:mixin:APP:ae2.mixins.json:PickColorMixin,pl:mixin:APP:architectury.mixins.json:MixinMinecraft,pl:mixin:APP:balm.mixins.json:MinecraftMixin,pl:mixin:APP:bookshelf.common.mixins.json:client.AccessorMinecraft,pl:mixin:APP:flywheel.mixins.json:PausedPartialTickAccessor,pl:mixin:APP:immersiveengineering.mixins.json:accessors.client.MinecraftAccess,pl:mixin:APP:create.mixins.json:WindowResizeMixin,pl:mixin:APP:securitycraft.mixins.json:camera.MinecraftMixin,pl:mixin:A,pl:runtimedistcleaner:A}
    at net.minecraft.client.Minecraft.m_91383_(Minecraft.java:1019) ~[client-1.18.2-20220404.173914-srg.jar%23178!/:?] {re:mixin,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,pl:mixin:APP:ae2.mixins.json:PickColorMixin,pl:mixin:APP:architectury.mixins.json:MixinMinecraft,pl:mixin:APP:balm.mixins.json:MinecraftMixin,pl:mixin:APP:bookshelf.common.mixins.json:client.AccessorMinecraft,pl:mixin:APP:flywheel.mixins.json:PausedPartialTickAccessor,pl:mixin:APP:immersiveengineering.mixins.json:accessors.client.MinecraftAccess,pl:mixin:APP:create.mixins.json:WindowResizeMixin,pl:mixin:APP:securitycraft.mixins.json:camera.MinecraftMixin,pl:mixin:A,pl:runtimedistcleaner:A}
    at net.minecraft.client.Minecraft.m_91374_(Minecraft.java:663) ~[client-1.18.2-20220404.173914-srg.jar%23178!/:?] {re:mixin,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,pl:mixin:APP:ae2.mixins.json:PickColorMixin,pl:mixin:APP:architectury.mixins.json:MixinMinecraft,pl:mixin:APP:balm.mixins.json:MinecraftMixin,pl:mixin:APP:bookshelf.common.mixins.json:client.AccessorMinecraft,pl:mixin:APP:flywheel.mixins.json:PausedPartialTickAccessor,pl:mixin:APP:immersiveengineering.mixins.json:accessors.client.MinecraftAccess,pl:mixin:APP:create.mixins.json:WindowResizeMixin,pl:mixin:APP:securitycraft.mixins.json:camera.MinecraftMixin,pl:mixin:A,pl:runtimedistcleaner:A}
    at net.minecraft.client.main.Main.main(Main.java:205) ~[client-1.18.2-20220404.173914-srg.jar%23178!/:?] {re:classloading,pl:runtimedistcleaner:A}
    at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:?] {}
    at jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) ~[?:?] {}
    at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:?] {}
    at java.lang.reflect.Method.invoke(Method.java:568) ~[?:?] {}
    at net.minecraftforge.fml.loading.targets.CommonClientLaunchHandler.lambda$launchService$0(CommonClientLaunchHandler.java:31) ~[fmlloader-1.18.2-40.1.54.jar%2316!/:?] {}
    at cpw.mods.modlauncher.LaunchServiceHandlerDecorator.launch(LaunchServiceHandlerDecorator.java:37) [modlauncher-9.1.3.jar%235!/:?] {}
    at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:53) [modlauncher-9.1.3.jar%235!/:?] {}
    at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:71) [modlauncher-9.1.3.jar%235!/:?] {}
    at cpw.mods.modlauncher.Launcher.run(Launcher.java:106) [modlauncher-9.1.3.jar%235!/:?] {}
    at cpw.mods.modlauncher.Launcher.main(Launcher.java:77) [modlauncher-9.1.3.jar%235!/:?] {}
    at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:26) [modlauncher-9.1.3.jar%235!/:?] {}
    at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:23) [modlauncher-9.1.3.jar%235!/:?] {}
    at cpw.mods.bootstraplauncher.BootstrapLauncher.main(BootstrapLauncher.java:149) [bootstraplauncher-1.0.0.jar:?] {}


— Affected level —
Details:
    All players: 1 total; [LocalPlayer[‘Batuh’/329, l=’ClientLevel’, x=25.50, y=66.00, z=25.50]]
    Chunk stats: 121, 57
    Level dimension: minecraft:overworld
    Level spawn location: World: (16,67,32), Section: (at 0,3,0 in 1,4,2; chunk contains blocks 16,-64,32 to 31,319,47), Region: (0,0; contains chunks 0,0 to 31,31, blocks 0,-64,0 to 511,319,511)
    Level time: 60 game time, 60 day time
    Server brand: forge
    Server type: Integrated singleplayer server
Stacktrace:
    at net.minecraft.client.multiplayer.ClientLevel.m_6026_(ClientLevel.java:516) ~[client-1.18.2-20220404.173914-srg.jar%23178!/:?] {re:mixin,xf:OptiFine:default,re:classloading,xf:OptiFine:default,pl:mixin:APP:architectury.mixins.json:MixinClientLevel,pl:mixin:APP:flywheel.mixins.json:ClientLevelMixin,pl:mixin:APP:create.mixins.json:DestroyProgressMixin,pl:mixin:A}
    at net.minecraft.client.Minecraft.m_91354_(Minecraft.java:2260) ~[client-1.18.2-20220404.173914-srg.jar%23178!/:?] {re:mixin,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,pl:mixin:APP:ae2.mixins.json:PickColorMixin,pl:mixin:APP:architectury.mixins.json:MixinMinecraft,pl:mixin:APP:balm.mixins.json:MinecraftMixin,pl:mixin:APP:bookshelf.common.mixins.json:client.AccessorMinecraft,pl:mixin:APP:flywheel.mixins.json:PausedPartialTickAccessor,pl:mixin:APP:immersiveengineering.mixins.json:accessors.client.MinecraftAccess,pl:mixin:APP:create.mixins.json:WindowResizeMixin,pl:mixin:APP:securitycraft.mixins.json:camera.MinecraftMixin,pl:mixin:A,pl:runtimedistcleaner:A}
    at net.minecraft.client.Minecraft.m_91374_(Minecraft.java:680) ~[client-1.18.2-20220404.173914-srg.jar%23178!/:?] {re:mixin,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,pl:mixin:APP:ae2.mixins.json:PickColorMixin,pl:mixin:APP:architectury.mixins.json:MixinMinecraft,pl:mixin:APP:balm.mixins.json:MinecraftMixin,pl:mixin:APP:bookshelf.common.mixins.json:client.AccessorMinecraft,pl:mixin:APP:flywheel.mixins.json:PausedPartialTickAccessor,pl:mixin:APP:immersiveengineering.mixins.json:accessors.client.MinecraftAccess,pl:mixin:APP:create.mixins.json:WindowResizeMixin,pl:mixin:APP:securitycraft.mixins.json:camera.MinecraftMixin,pl:mixin:A,pl:runtimedistcleaner:A}
    at net.minecraft.client.main.Main.main(Main.java:205) ~[client-1.18.2-20220404.173914-srg.jar%23178!/:?] {re:classloading,pl:runtimedistcleaner:A}
    at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:?] {}
    at jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) ~[?:?] {}
    at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:?] {}
    at java.lang.reflect.Method.invoke(Method.java:568) ~[?:?] {}
    at net.minecraftforge.fml.loading.targets.CommonClientLaunchHandler.lambda$launchService$0(CommonClientLaunchHandler.java:31) ~[fmlloader-1.18.2-40.1.54.jar%2316!/:?] {}
    at cpw.mods.modlauncher.LaunchServiceHandlerDecorator.launch(LaunchServiceHandlerDecorator.java:37) [modlauncher-9.1.3.jar%235!/:?] {}
    at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:53) [modlauncher-9.1.3.jar%235!/:?] {}
    at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:71) [modlauncher-9.1.3.jar%235!/:?] {}
    at cpw.mods.modlauncher.Launcher.run(Launcher.java:106) [modlauncher-9.1.3.jar%235!/:?] {}
    at cpw.mods.modlauncher.Launcher.main(Launcher.java:77) [modlauncher-9.1.3.jar%235!/:?] {}
    at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:26) [modlauncher-9.1.3.jar%235!/:?] {}
    at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:23) [modlauncher-9.1.3.jar%235!/:?] {}
    at cpw.mods.bootstraplauncher.BootstrapLauncher.main(BootstrapLauncher.java:149) [bootstraplauncher-1.0.0.jar:?] {}


— Last reload —
Details:
    Reload number: 1
    Reload reason: initial
    Finished: Yes
    Packs: Mod Resources, Default, Copper Legacy Pack.zip, Tissou’s Zombie Pack 1.18_2.1.zip, guiretextures-darkmode-1.7.4.zip, quark-emote-pack, Solar Flux Generated Resources

— System Details —
Details:
    Minecraft Version: 1.18.2
    Minecraft Version ID: 1.18.2
    Operating System: Windows 10 (amd64) version 10.0
    Java Version: 17.0.3.1, Oracle Corporation
    Java VM Version: Java HotSpot(TM) 64-Bit Server VM (mixed mode, sharing), Oracle Corporation
    Memory: 7236154376 bytes (6900 MiB) / 11408506880 bytes (10880 MiB) up to 16777216000 bytes (16000 MiB)
    CPUs: 4
    Processor Vendor: GenuineIntel
    Processor Name: Intel(R) Core(TM) i5-7300HQ CPU @ 2.50GHz
    Identifier: Intel64 Family 6 Model 158 Stepping 9
    Microarchitecture: Kaby Lake
    Frequency (GHz): 2,50
    Number of physical packages: 1
    Number of physical CPUs: 4
    Number of logical CPUs: 4
    Graphics card #0 name: NVIDIA GeForce GTX 1050 Ti
    Graphics card #0 vendor: NVIDIA (0x10de)
    Graphics card #0 VRAM (MB): 4095,00
    Graphics card #0 deviceId: 0x1c8c
    Graphics card #0 versionInfo: DriverVersion=31.0.15.1659
    Graphics card #1 name: Intel(R) HD Graphics 630
    Graphics card #1 vendor: Intel Corporation (0x8086)
    Graphics card #1 VRAM (MB): 1024,00
    Graphics card #1 deviceId: 0x591b
    Graphics card #1 versionInfo: DriverVersion=26.20.100.7325
    Memory slot #0 capacity (MB): 16384,00
    Memory slot #0 clockSpeed (GHz): 2,40
    Memory slot #0 type: DDR4
    Memory slot #1 capacity (MB): 8192,00
    Memory slot #1 clockSpeed (GHz): 2,40
    Memory slot #1 type: DDR4
    Virtual memory max (MB): 58557,02
    Virtual memory used (MB): 24288,58
    Swap memory total (MB): 34096,00
    Swap memory used (MB): 1022,54
    JVM Flags: 9 total; -XX:HeapDumpPath=MojangTricksIntelDriversForPerformance_javaw.exe_minecraft.exe.heapdump -Xss1M -Xmx16000M -XX:+UnlockExperimentalVMOptions -XX:+UseG1GC -XX:G1NewSizePercent=20 -XX:G1ReservePercent=20 -XX:MaxGCPauseMillis=50 -XX:G1HeapRegionSize=32M
    Launched Version: 1.18.2-forge-40.1.54
    Backend library: LWJGL version 3.2.2 SNAPSHOT
    Backend API: NVIDIA GeForce GTX 1050 Ti/PCIe/SSE2 GL version 3.2.0 NVIDIA 516.59, NVIDIA Corporation
    Window size: 1920×1080
    GL Caps: Using framebuffer using OpenGL 3.2
    GL debug messages:
    Using VBOs: Yes
    Is Modded: Definitely; Client brand changed to ‘forge’; Server brand changed to ‘forge’
    Type: Integrated Server (map_client.txt)
    Graphics mode: fast
    Resource Packs: vanilla, file/Copper Legacy Pack.zip, file/Tissou’s Zombie Pack 1.18_2.1.zip, file/guiretextures-darkmode-1.7.4.zip
    Current Language: Türkçe (Türkiye)
    CPU: 4x Intel(R) Core(TM) i5-7300HQ CPU @ 2.50GHz
    Server Running: true
    Player Count: 1 / 8; [ServerPlayer[‘Batuh’/329, l=’ServerLevel[Yeni Dünya]’, x=25.50, y=66.00, z=25.50]]
    Data Packs: vanilla, mod:betterdungeons, mod:supermartijn642configlib, mod:refinedpipes, mod:hammerlib (incompatible), mod:sophisticatedcore (incompatible), mod:neat (incompatible), mod:forgeendertech, mod:cookingforblockheads (incompatible), mod:controlling (incompatible), mod:placebo (incompatible), mod:citadel (incompatible), mod:alexsmobs (incompatible), mod:yungsapi, mod:moreminecarts (incompatible), mod:culinaryconstruct (incompatible), mod:bookshelf, mod:sophisticatedbackpacks (incompatible), mod:simpleplanes (incompatible), mod:apotheosis (incompatible), mod:mekanismgenerators, mod:balm (incompatible), mod:carryon (incompatible), mod:adpother, mod:jeresources (incompatible), mod:ninjaphenix_container_lib (incompatible), mod:mob_grinding_utils (incompatible), mod:refinedstorage, mod:upgradednetherite (incompatible), mod:chipped (incompatible), mod:industrialforegoing (incompatible), mod:farmersdelight (incompatible), mod:morevillagers (incompatible), mod:bcc (incompatible), mod:biomesoplenty (incompatible), mod:ironfurnaces (incompatible), mod:wirelesschargers, mod:supermartijn642corelib, mod:spark (incompatible), mod:solarflux (incompatible), mod:curios (incompatible), mod:tetra (incompatible), mod:patchouli (incompatible), mod:easypaxel (incompatible), mod:oreexcavation, mod:nuclearscience (incompatible), mod:lostcities (incompatible), mod:betterstrongholds, mod:expandedstorage, mod:mekanismtools, mod:constructionwand, mod:cfm, mod:architectury (incompatible), mod:curiouselytra (incompatible), mod:framework (incompatible), mod:bettermineshafts, mod:cyclic, mod:quarkoddities (incompatible), mod:cucumber, mod:ftblibrary (incompatible), mod:ftbranks (incompatible), mod:cgm, mod:jei (incompatible), mod:projecte, mod:mekanism, mod:caelus (incompatible), mod:ringsofascension (incompatible), mod:waystones (incompatible), mod:journeymap, mod:comforts (incompatible), mod:artifacts, mod:storagenetwork (incompatible), mod:sereneseasons (incompatible), mod:configured (incompatible), mod:modularforcefields (incompatible), mod:decorative_blocks, mod:dungeoncrawl, mod:betteranimalsplus (incompatible), mod:pneumaticcraft, mod:mcjtylib (incompatible), mod:rftoolsbase (incompatible), mod:rftoolsstorage (incompatible), mod:rftoolsdim (incompatible), mod:electrodynamics (incompatible), mod:rftoolspower (incompatible), mod:forge, mod:selene (incompatible), mod:mysticalagriculture, mod:zerocore, mod:bigreactors, mod:useless_sword, mod:cofh_core, mod:thermal, mod:thermal_integration, mod:thermal_innovation, mod:thermal_expansion, mod:thermal_locomotion (incompatible), mod:tconstruct (incompatible), mod:rftoolsutility (incompatible), mod:enchdesc (incompatible), mod:theoneprobe (incompatible), mod:ae2 (incompatible), mod:terrablender (incompatible), mod:mousetweaks (incompatible), mod:titanium (incompatible), mod:immersiveengineering, mod:adlods, mod:nethersdelight (incompatible), mod:rftoolsbuilder (incompatible), mod:flywheel (incompatible), mod:create, mod:mutil (incompatible), mod:mantle (incompatible), mod:thermal_cultivation, mod:justenoughprofessions (incompatible), mod:autoreglib (incompatible), mod:quark (incompatible), mod:securitycraft (incompatible), mod:storagedrawers (incompatible), mod:upgradedcore (incompatible), mod:appleskin (incompatible), mod:upgradednetherite_ultimate (incompatible), mod:aquaculture (incompatible), mod:expandability (incompatible), mod:cosmeticarmorreworked (incompatible), mod:chiselsandbits (incompatible), mod:createaddition (incompatible), Solar Flux Generated Resources
    World Generation: Stable
    OptiFine Version: OptiFine_1.18.2_HD_U_H7
    OptiFine Build: 20220410-185216
    Render Distance Chunks: 2
    Mipmaps: 4
    Anisotropic Filtering: 1
    Antialiasing: 0
    Multitexture: false
    Shaders: null
    OpenGlVersion: 3.2.0 NVIDIA 516.59
    OpenGlRenderer: NVIDIA GeForce GTX 1050 Ti/PCIe/SSE2
    OpenGlVendor: NVIDIA Corporation
    CpuCount: 4
    ModLauncher: 9.1.3+9.1.3+main.9b69c82a
    ModLauncher launch target: forgeclient
    ModLauncher naming: srg
    ModLauncher services:
         mixin PLUGINSERVICE
         eventbus PLUGINSERVICE
         slf4jfixer PLUGINSERVICE
         object_holder_definalize PLUGINSERVICE
         runtime_enum_extender PLUGINSERVICE
         capability_token_subclass PLUGINSERVICE
         accesstransformer PLUGINSERVICE
         runtimedistcleaner PLUGINSERVICE
         mixin TRANSFORMATIONSERVICE
         OptiFine TRANSFORMATIONSERVICE
         fml TRANSFORMATIONSERVICE
    FML Language Providers:
        minecraft@1.0
        lowcodefml@null
        javafml@null
    Mod List:
        YungsBetterDungeons-1.18.2-Forge-2.1.0.jar        |YUNG’s Better Dungeons        |betterdungeons                |1.18.2-Forge-2.1.0  |DONE      |Manifest: NOSIGNATURE
        supermartijn642configlib-1.1.3-forge-mc1.18.jar   |SuperMartijn642’s Config Libra|supermartijn642configlib      |1.1.3               |DONE      |Manifest: NOSIGNATURE
        refinedpipes-0.6.2.jar                            |Refined Pipes                 |refinedpipes                  |0.6.2               |DONE      |Manifest: NOSIGNATURE
        HammerLib-1.18.2-18.2.16.jar                      |HammerLib                     |hammerlib                     |18.2.16             |DONE      |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
        sophisticatedcore-1.18.2-0.3.1.39.jar             |Sophisticated Core            |sophisticatedcore             |1.18.2-0.3.1.39     |DONE      |Manifest: NOSIGNATURE
        Neat 1.8-30.jar                                   |Neat                          |neat                          |1.8-30              |DONE      |Manifest: NOSIGNATURE
        ForgeEndertech-1.18.2-9.0.2.0-build.0935.jar      |ForgeEndertech                |forgeendertech                |9.0.2.0             |DONE      |Manifest: NOSIGNATURE
        cookingforblockheads-forge-1.18.2-12.0.1.jar      |CookingForBlockheads          |cookingforblockheads          |12.0.1              |DONE      |Manifest: NOSIGNATURE
        Controlling-forge-1.18.2-9.0+19.jar               |Controlling                   |controlling                   |9.0+19              |DONE      |Manifest: NOSIGNATURE
        Placebo-1.18.2-6.4.0.jar                          |Placebo                       |placebo                       |6.4.0               |DONE      |Manifest: NOSIGNATURE
        citadel-1.11.3-1.18.2.jar                         |Citadel                       |citadel                       |1.11.3              |DONE      |Manifest: NOSIGNATURE
        alexsmobs-1.18.3.jar                              |Alex’s Mobs                   |alexsmobs                     |1.18.3              |DONE      |Manifest: NOSIGNATURE
        YungsApi-1.18.2-Forge-2.0.8.jar                   |YUNG’s API                    |yungsapi                      |1.18.2-Forge-2.0.8  |DONE      |Manifest: NOSIGNATURE
        moreminecarts-1.4.6.jar                           |More Minecarts                |moreminecarts                 |1.4.6               |DONE      |Manifest: NOSIGNATURE
        culinaryconstruct-forge-1.18.2-4.3.1.0.jar        |Culinary Construct            |culinaryconstruct             |1.18.2-4.3.1.0      |DONE      |Manifest: NOSIGNATURE
        Bookshelf-Forge-1.18.2-13.2.20.jar                |Bookshelf                     |bookshelf                     |13.2.20             |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.18.2-3.17.4.592.jar      |Sophisticated Backpacks       |sophisticatedbackpacks        |1.18.2-3.17.4.592   |DONE      |Manifest: NOSIGNATURE
        simpleplanes-1.18.2-4.13.4.jar                    |Simple Planes                 |simpleplanes                  |1.18.2-4.13.4       |DONE      |Manifest: NOSIGNATURE
        Apotheosis-1.18.2-5.3.5.jar                       |Apotheosis                    |apotheosis                    |5.3.5               |DONE      |Manifest: NOSIGNATURE
        MekanismGenerators-1.18.2-10.2.3.463.jar          |Mekanism: Generators          |mekanismgenerators            |10.2.3              |DONE      |Manifest: NOSIGNATURE
        balm-3.0.3+0.jar                                  |Balm                          |balm                          |3.0.3+0             |DONE      |Manifest: NOSIGNATURE
        carryon-1.18.2-1.17.0.8.jar                       |Carry On                      |carryon                       |1.17.0.8            |DONE      |Manifest: NOSIGNATURE
        AdPother-1.18.2-6.0.2.1-build.0943.jar            |Pollution of the Realms       |adpother                      |6.0.2.1             |DONE      |Manifest: NOSIGNATURE
        JustEnoughResources-1.18.2-0.14.1.170.jar         |Just Enough Resources         |jeresources                   |0.14.1.170          |DONE      |Manifest: NOSIGNATURE
        ninjaphenix-container-library-1.3.0+1.18-forge.jar|NinjaPhenix’s Container Librar|ninjaphenix_container_lib     |1.3.0               |DONE      |Manifest: NOSIGNATURE
        mob_grinding_utils-1.18.2-0.4.39.jar              |Mob Grinding Utils            |mob_grinding_utils            |1.18.2-0.4.39       |DONE      |Manifest: NOSIGNATURE
        refinedstorage-1.10.2.jar                         |Refined Storage               |refinedstorage                |1.10.2              |DONE      |Manifest: NOSIGNATURE
        upgradednetherite-1.18.2-4.2.0.6-release.jar      |Upgraded Netherite            |upgradednetherite             |1.18.2-4.2.0.6-relea|DONE      |Manifest: NOSIGNATURE
        chipped-1.18.2-1.2.1-forge.jar                    |Chipped                       |chipped                       |1.18.2-1.2.1-forge  |DONE      |Manifest: NOSIGNATURE
        industrial-foregoing-1.18.2-3.3.1.1-3.jar         |Industrial Foregoing          |industrialforegoing           |3.3.1.1             |DONE      |Manifest: NOSIGNATURE
        FarmersDelight-1.18.2-1.1.1.jar                   |Farmer’s Delight              |farmersdelight                |1.18.2-1.1.1        |DONE      |Manifest: NOSIGNATURE
        morevillagers-FORGE-1.18.2-3.2.0.jar              |More Villagers                |morevillagers                 |3.2.0               |DONE      |Manifest: NOSIGNATURE
        BetterCompatibilityChecker-1.1.14-build.26+mc1.18.|Better Compatibility Checker  |bcc                           |1.1.14-build.26+mc1.|DONE      |Manifest: NOSIGNATURE
        BiomesOPlenty-1.18.2-16.0.0.109-universal(1).jar  |Biomes O’ Plenty              |biomesoplenty                 |1.18.2-16.0.0.109   |DONE      |Manifest: NOSIGNATURE
        ironfurnaces-1.18.2-3.3.1.jar                     |Iron Furnaces                 |ironfurnaces                  |3.3.1               |DONE      |Manifest: NOSIGNATURE
        wirelesschargers-1.0.6-forge-mc1.18.jar           |Wireless Chargers             |wirelesschargers              |1.0.6               |DONE      |Manifest: NOSIGNATURE
        supermartijn642corelib-1.0.18-forge-mc1.18.jar    |SuperMartijn642’s Core Lib    |supermartijn642corelib        |1.0.18              |DONE      |Manifest: NOSIGNATURE
        spark-1.9.11-forge.jar                            |spark                         |spark                         |1.9.11              |DONE      |Manifest: NOSIGNATURE
        SolarFluxReborn-1.18.2-18.2.4.jar                 |Solar Flux Reborn             |solarflux                     |18.2.4              |DONE      |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
        curios-forge-1.18.2-5.0.7.0.jar                   |Curios API                    |curios                        |1.18.2-5.0.7.0      |DONE      |Manifest: NOSIGNATURE
        tetra-1.18.2-4.9.3.jar                            |Tetra                         |tetra                         |4.9.3               |DONE      |Manifest: NOSIGNATURE
        Patchouli-1.18.2-69.jar                           |Patchouli                     |patchouli                     |0.0NONE             |DONE      |Manifest: NOSIGNATURE
        EasyPaxel1.18.2(FORGE)vs1.0.11.jar                |Easy Paxel                    |easypaxel                     |1.18.2-1.0.11       |DONE      |Manifest: NOSIGNATURE
        OreExcavation-1.10.161.jar                        |OreExcavation                 |oreexcavation                 |1.10.161            |DONE      |Manifest: NOSIGNATURE
        Nuclear Science-1.18.2-0.4.8-10.jar               |Nuclear Science               |nuclearscience                |1.18.2-0.4.8-10     |DONE      |Manifest: NOSIGNATURE
        lostcities-1.18-5.2.4.jar                         |LostCities                    |lostcities                    |1.18-5.2.4          |DONE      |Manifest: NOSIGNATURE
        YungsBetterStrongholds-1.18.2-Forge-2.1.1.jar     |YUNG’s Better Strongholds     |betterstrongholds             |1.18.2-Forge-2.1.1  |DONE      |Manifest: NOSIGNATURE
        expandedstorage-7.3.11+1.18.2.jar                 |Expanded Storage              |expandedstorage               |7.3.11              |DONE      |Manifest: NOSIGNATURE
        MekanismTools-1.18.2-10.2.3.463.jar               |Mekanism: Tools               |mekanismtools                 |10.2.3              |DONE      |Manifest: NOSIGNATURE
        constructionwand-1.18.2-2.7.jar                   |Construction Wand             |constructionwand              |1.18.2-2.7          |DONE      |Manifest: NOSIGNATURE
        cfm-7.0.0-pre29-1.18.2.jar                        |MrCrayfish’s Furniture Mod    |cfm                           |7.0.0-pre29         |DONE      |Manifest: NOSIGNATURE
        architectury-4.4.70.jar                           |Architectury                  |architectury                  |4.4.70              |DONE      |Manifest: NOSIGNATURE
        curiouselytra-forge-1.18.1-5.0.1.0.jar            |Curious Elytra                |curiouselytra                 |1.18.1-5.0.1.0      |DONE      |Manifest: NOSIGNATURE
        framework-0.2.3-1.18.2.jar                        |Framework                     |framework                     |0.2.3               |DONE      |Manifest: NOSIGNATURE
        YungsBetterMineshafts-1.18.2-Forge-2.1.3.jar      |YUNG’s Better Mineshafts      |bettermineshafts              |1.18.2-Forge-2.1.3  |DONE      |Manifest: NOSIGNATURE
        Cyclic-1.18.2-1.7.1.jar                           |Cyclic                        |cyclic                        |1.18.2-1.7.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
        QuarkOddities-1.18.jar                            |Quark Oddities                |quarkoddities                 |1.18                |DONE      |Manifest: NOSIGNATURE
        Cucumber-1.18.2-5.1.1.jar                         |Cucumber Library              |cucumber                      |5.1.1               |DONE      |Manifest: NOSIGNATURE
        ftb-library-forge-1802.3.6-build.123.jar          |FTB Library                   |ftblibrary                    |1802.3.6-build.123  |DONE      |Manifest: NOSIGNATURE
        ftb-ranks-forge-1802.1.8-build.34.jar             |FTB Ranks                     |ftbranks                      |1802.1.8-build.34   |DONE      |Manifest: NOSIGNATURE
        cgm-1.2.5-1.18.2.jar                              |MrCrayfish’s Gun Mod          |cgm                           |1.2.5               |DONE      |Manifest: NOSIGNATURE
        jei-1.18.2-9.7.0.196.jar                          |Just Enough Items             |jei                           |9.7.0.196           |DONE      |Manifest: NOSIGNATURE
        ProjectE-1.18.2-PE1.0.1.jar                       |ProjectE                      |projecte                      |1.0.1               |DONE      |Manifest: NOSIGNATURE
        Mekanism-1.18.2-10.2.3.463.jar                    |Mekanism                      |mekanism                      |10.2.3              |DONE      |Manifest: NOSIGNATURE
        caelus-forge-1.18.1-3.0.0.2.jar                   |Caelus API                    |caelus                        |1.18.1-3.0.0.2      |DONE      |Manifest: NOSIGNATURE
        RingsOfAscension-1.18.2-1.0.1.jar                 |Rings of Ascension            |ringsofascension              |1.0.0               |DONE      |Manifest: NOSIGNATURE
        waystones-forge-1.18.2-10.0.0.jar                 |Waystones                     |waystones                     |10.0.0              |DONE      |Manifest: NOSIGNATURE
        journeymap-1.18.2-5.8.5-forge.jar                 |Journeymap                    |journeymap                    |5.8.5               |DONE      |Manifest: NOSIGNATURE
        comforts-forge-1.18.2-5.0.0.4.jar                 |Comforts                      |comforts                      |1.18.2-5.0.0.4      |DONE      |Manifest: NOSIGNATURE
        artifacts-1.18.2-4.0.7.jar                        |Artifacts                     |artifacts                     |1.18.2-4.0.7        |DONE      |Manifest: NOSIGNATURE
        SimpleStorageNetwork-1.18.2-1.6.1.jar             |Simple Storage Network        |storagenetwork                |1.18.2-1.6.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
        Serene Seasons-1.18.2-7.0.0.13.jar                |Serene Seasons                |sereneseasons                 |1.18.2-7.0.0.13     |DONE      |Manifest: NOSIGNATURE
        configured-1.5.3-1.18.2.jar                       |Configured                    |configured                    |1.5.3               |DONE      |Manifest: NOSIGNATURE
        Modular+Forcefields-1.18.2-0.0.1-2.jar            |Modular Forcefields           |modularforcefields            |1.18.2-0.0.1-2      |DONE      |Manifest: NOSIGNATURE
        Decorative Blocks-forge-1.18.2-2.1.0.jar          |Decorative Blocks             |decorative_blocks             |2.1.0               |DONE      |Manifest: NOSIGNATURE
        DungeonCrawl-1.18.2-2.3.8.jar                     |Dungeon Crawl                 |dungeoncrawl                  |2.3.8               |DONE      |Manifest: NOSIGNATURE
        betteranimalsplus-1.18.2-11.0.5-forge.jar         |Better Animals Plus           |betteranimalsplus             |1.18.2-11.0.5       |DONE      |Manifest: NOSIGNATURE
        pneumaticcraft-repressurized-1.18.2-3.2.4-93.jar  |PneumaticCraft: Repressurized |pneumaticcraft                |1.18.2-3.2.4-93     |DONE      |Manifest: NOSIGNATURE
        mcjtylib-1.18-6.0.15.jar                          |McJtyLib                      |mcjtylib                      |1.18-6.0.15         |DONE      |Manifest: NOSIGNATURE
        rftoolsbase-1.18-3.0.9.jar                        |RFToolsBase                   |rftoolsbase                   |1.18-3.0.9          |DONE      |Manifest: NOSIGNATURE
        rftoolsstorage-1.18-3.0.8.jar                     |RFToolsStorage                |rftoolsstorage                |1.18-3.0.8          |DONE      |Manifest: NOSIGNATURE
        rftoolsdim-1.18-8.0.6.jar                         |RFToolsDimensions             |rftoolsdim                    |1.18-8.0.6          |DONE      |Manifest: NOSIGNATURE
        Electrodynamics-1.18.2-0.6.3-10.jar               |Electrodynamics               |electrodynamics               |1.18.2-0.6.3-10     |DONE      |Manifest: NOSIGNATURE
        rftoolspower-1.18-4.0.5.jar                       |RFToolsPower                  |rftoolspower                  |1.18-4.0.5          |DONE      |Manifest: NOSIGNATURE
        forge-1.18.2-40.1.54-universal.jar                |Forge                         |forge                         |40.1.54             |DONE      |Manifest: 84:ce:76:e8:45:35:e4:0e:63:86:df:47:59:80:0f:67:6c:c1:5f:6e:5f:4d:b3:54:47:1a:9f:7f:ed:5e:f2:90
        selene-1.18.2-1.17.5.jar                          |Selene                        |selene                        |1.18.2-1.17.5       |DONE      |Manifest: NOSIGNATURE
        MysticalAgriculture-1.18.2-5.1.0(1).jar           |Mystical Agriculture          |mysticalagriculture           |5.1.0               |DONE      |Manifest: NOSIGNATURE
        ZeroCore2-1.18.2-2.1.17.jar                       |Zero CORE 2                   |zerocore                      |1.18.2-2.1.17       |DONE      |Manifest: NOSIGNATURE
        ExtremeReactors2-1.18.2-2.0.45.jar                |Extreme Reactors              |bigreactors                   |1.18.2-2.0.45       |DONE      |Manifest: NOSIGNATURE
        useless-sword-1.18.2-V1.4.1.jar                   |Useless Sword                 |useless_sword                 |1.4.1               |DONE      |Manifest: NOSIGNATURE
        client-1.18.2-20220404.173914-srg.jar             |Minecraft                     |minecraft                     |1.18.2              |DONE      |Manifest: a1:d4:5e:04:4f:d3:d6:e0:7b:37:97:cf:77:b0:de:ad:4a:47:ce:8c:96:49:5f:0a:cf:8c:ae:b2:6d:4b:8a:3f
        cofh_core-1.18.2-1.6.3.19.jar                     |CoFH Core                     |cofh_core                     |1.6.3.19            |DONE      |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.18.2-1.6.2.27.jar            |Thermal Series                |thermal                       |1.6.2.27            |DONE      |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_integration-1.18.2-1.6.0.6.jar            |Thermal Integration           |thermal_integration           |1.6.0.6             |DONE      |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.18.2-1.6.1.10.jar            |Thermal Innovation            |thermal_innovation            |1.6.1.10            |DONE      |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.18.2-1.6.1.11.jar             |Thermal Expansion             |thermal_expansion             |1.6.1.11            |DONE      |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.18.2-1.6.0.6.jar             |Thermal Locomotion            |thermal_locomotion            |1.6.0.6             |DONE      |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.18.2-3.5.0.17.jar                    |Tinkers’ Construct            |tconstruct                    |3.5.0.17            |DONE      |Manifest: NOSIGNATURE
        rftoolsutility-1.18-4.0.16.jar                    |RFToolsUtility                |rftoolsutility                |1.18-4.0.16         |DONE      |Manifest: NOSIGNATURE
        EnchantmentDescriptions-Forge-1.18.2-10.0.3.jar   |EnchantmentDescriptions       |enchdesc                      |10.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
        theoneprobe-1.18-5.1.0.jar                        |The One Probe                 |theoneprobe                   |1.18-5.1.0          |DONE      |Manifest: NOSIGNATURE
        appliedenergistics2-11.1.2.jar                    |Applied Energistics 2         |ae2                           |11.1.2              |DONE      |Manifest: NOSIGNATURE
        TerraBlender-forge-1.18.2-1.1.0.102.jar           |TerraBlender                  |terrablender                  |1.18.2-1.1.0.102    |DONE      |Manifest: NOSIGNATURE
        MouseTweaks-forge-mc1.18-2.21.jar                 |Mouse Tweaks                  |mousetweaks                   |2.21                |DONE      |Manifest: NOSIGNATURE
        titanium-1.18.2-3.5.6-38.jar                      |Titanium                      |titanium                      |3.5.6               |DONE      |Manifest: NOSIGNATURE
        ImmersiveEngineering-1.18.2-8.0.2-149.jar         |Immersive Engineering         |immersiveengineering          |1.18.2-8.0.2-149    |DONE      |Manifest: NOSIGNATURE
        AdLods-1.18.2-6.0.0.0-build.0342.jar              |Large Ore Deposits            |adlods                        |6.0.0.0             |DONE      |Manifest: NOSIGNATURE
        NethersDelight-1.18.2-2.2.0.jar                   |Nethers Delight               |nethersdelight                |2.2                 |DONE      |Manifest: NOSIGNATURE
        rftoolsbuilder-1.18-4.0.12.jar                    |RFToolsBuilder                |rftoolsbuilder                |1.18-4.0.12         |DONE      |Manifest: NOSIGNATURE
        flywheel-forge-1.18-0.6.2.jar                     |Flywheel                      |flywheel                      |1.18-0.6.2          |DONE      |Manifest: NOSIGNATURE
        create-mc1.18.2_v0.4.1.jar                        |Create                        |create                        |0.4.1               |DONE      |Manifest: NOSIGNATURE
        mutil-1.18.2-4.5.0.jar                            |mutil                         |mutil                         |4.5.0               |DONE      |Manifest: NOSIGNATURE
        Mantle-1.18.2-1.9.20.jar                          |Mantle                        |mantle                        |1.9.20              |DONE      |Manifest: NOSIGNATURE
        thermal_cultivation-1.18.2-1.6.1.9.jar            |Thermal Cultivation           |thermal_cultivation           |1.6.1.9             |DONE      |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
        JustEnoughProfessions-1.18.2-1.2.2.jar            |Just Enough Professions (JEP) |justenoughprofessions         |1.2.2               |DONE      |Manifest: NOSIGNATURE
        AutoRegLib-1.7-53.jar                             |AutoRegLib                    |autoreglib                    |1.7-53              |DONE      |Manifest: NOSIGNATURE
        Quark-3.2-357.jar                                 |Quark                         |quark                         |3.2-357             |DONE      |Manifest: NOSIGNATURE
        [1.18.2] SecurityCraft v1.9.2.jar                 |SecurityCraft                 |securitycraft                 |1.9.2               |DONE      |Manifest: NOSIGNATURE
        StorageDrawers-1.18.2-10.2.1.jar                  |Storage Drawers               |storagedrawers                |10.2.1              |DONE      |Manifest: NOSIGNATURE
        upgradedcore-1.18.2-3.2.0.0-release.jar           |Upgraded Core                 |upgradedcore                  |1.18.2-3.2.0.0-relea|DONE      |Manifest: NOSIGNATURE
        appleskin-forge-mc1.18-2.4.0.jar                  |AppleSkin                     |appleskin                     |2.4.0+mc1.18        |DONE      |Manifest: NOSIGNATURE
        upgradednetherite_ultimate-1.18.2-3.2.0.1-release.|Upgraded Netherite : Ultimerit|upgradednetherite_ultimate    |1.18.2-3.2.0.1-relea|DONE      |Manifest: NOSIGNATURE
        Aquaculture-1.18.2-2.3.6.jar                      |Aquaculture 2                 |aquaculture                   |1.18.2-2.3.6        |DONE      |Manifest: NOSIGNATURE
        expandability-6.0.0.jar                           |ExpandAbility                 |expandability                 |6.0.0               |DONE      |Manifest: NOSIGNATURE
        CosmeticArmorReworked-1.18.2-v2.jar               |CosmeticArmorReworked         |cosmeticarmorreworked         |1.18.2-v2           |DONE      |Manifest: 5e:ed:25:99:e4:44:14:c0:dd:89:c1:a9:4c:10:b5:0d:e4:b1:52:50:45:82:13:d8:d0:32:89:67:56:57:01:53
        ChiselsBits-forge-1.18.2-1.2.90-universal.jar     |Chisels & bits                |chiselsandbits                |1.2.90              |DONE      |Manifest: NOSIGNATURE
        createaddition-1.18.2-20220517a.jar               |Create Crafts & Additions     |createaddition                |1.18.2-20220517a    |DONE      |Manifest: NOSIGNATURE
    Crash Report UUID: 0cd94391-5282-4695-b3ff-ecbeafb18fd4
    FML: 40.1
    Forge: net.minecraftforge:40.1.54
    Flywheel Backend: GL33 Instanced Arrays

Скрыть объявление

В преддверии глобального обновления, мы проводим исследования, которые помогут нам сделать опыт пользования форумом ещё удобнее. Помогите нам, примите участие!

Статус темы:

Закрыта.
  1. После написания команды для перевода и текст, который необходимо перевести

    Выкидывает из сервера и в консоль выдает ошибку: io.netty.handler.codec.EncoderException: String too big (was 146952 bytes encoded, max 32767)

    С чем это связано?

    Код перевода:

        public static String translate(String langFrom, String langTo, String text) throws IOException {
            String urlStr = "https://script.google.com/macros/s/AKfycbzhi3gpfD8b5PZ2pWS0pGCFOU0jF9vxJL2d-G9HQBTrZSfT9u4/exec" +
                    "?q=" + encode(text, StandardCharsets.UTF_8.toString()) + "&target=" + langTo + "&source=" + langFrom;
            URL url = new URL(urlStr);
            StringBuilder response = new StringBuilder();
            HttpURLConnection con = (HttpURLConnection) url.openConnection();
            con.setRequestProperty("User-Agent", "Mozilla/5.0");
            BufferedReader in = new BufferedReader(new InputStreamReader(con.getInputStream()));
            String inputLine;
            while ((inputLine = in.readLine()) != null) {
                response.append(inputLine);
            }
            in.close();
            return response.toString();
        }

    Код использования:

                func = (sender, args) -> {
                    final List<ECommand> cmds = new ArrayList<>(instance.getRegisteredCommands());
    
                    cmds.add(this);
    
                    if (!(sender instanceof Player)) return;
    
                    Player p = (Player) sender;
    
                    UUID id = p.getUniqueId();
    
                    StringBuilder sb = new StringBuilder();
                    for (int i = 0; i < args.length; i++) sb.append(args[i]).append(' ');
                    if(sb.length() < 3) {
                        send(sender, translateAlternateColorCodes('&', "&cПереведенный текст не может быть меньше 3 символов"));
                        return;
                    }
    
                    if (sender.hasPermission(getPermission()) || sender.isOp()) {
                        ru.remove(id);
                        en.add(id);
                        send(sender, translateAlternateColorCodes('&', "&c&l[TRANSLATOR] &fПереведенный текст: " + translate("en", "ru", sb.toString())));
                        send(sender, translateAlternateColorCodes('&', "&c&l[TRANSLATOR] &fЗапрос на перевод текста: &9(" + sb.toString() + ")"));
                        return;
                    }
                    send(sender, translateAlternateColorCodes('&', getString("NotHavePermission")));
                };

    if (sender.hasPermission(getPermission()) || sender.isOp()) {
    ru.remove(id);
    en.add(id);
    send(sender, translateAlternateColorCodes(‘&’, «&c&l[TRANSLATOR] &fПереведенный текст: » + translate(«en», «ru», sb.toString())));
    send(sender, translateAlternateColorCodes(‘&’, «&c&l[TRANSLATOR] &fЗапрос на перевод текста: &9(» + sb.toString() + «)»));
    return;
    }

  2. Ission
    Старожил
    Девелопер
    Пользователь

    Баллы:
    173
    Skype:
    lokivava

    С тем, что «String too big (was 146952 bytes encoded, max 32767)». То есть строка текста слишком длинная.

  3. У меня идентичный метод в переводе. Что не так?

  4. Почему он выводит какую-то фигню вместо текста?

    Часть из этого, так как не дает залить полностью

    [19:10:42] [Server thread/INFO]: <!DOCTYPE html><html lang="ru">  <head>  <meta charset="utf-8">  <meta content="width=300, initial-scale=1" name="viewport">  <meta name="google-site-verification" content="LrdTUW9psUAMbh4Ia074-BPEVmcpBxF6Gwf0MSgQXZs">  <title>Вход – Google Аккаунты</title>  <style>  @font-face {  font-family: 'Open Sans';  font-style: normal;  font-weight: 300;  src: url(//fonts.gstatic.com/s/opensans/v15/mem5YaGs126MiZpBA-UN_r8OVuhs.ttf) format('truetype');}@font-face {  font-family: 'Open Sans';  font-style: normal;  font-weight: 400;  src: url(//fonts.gstatic.com/s/opensans/v15/mem8YaGs126MiZpBA-UFUZ0e.ttf) format('truetype');}  </style>  <style>  h1, h2 {  -webkit-animation-duration: 0.1s;  -webkit-animation-name: fontfix;  -webkit-animation-iteration-count: 1;  -webkit-animation-timing-function: linear;  -webkit-animation-delay: 0;  }  @-webkit-keyframes fontfix {  from {  opacity: 1;  }  to {  opacity: 1;  }  }  </style><style>  html, body {  font-family: Arial, sans-serif;  background: #fff;  margin: 0;  padding: 0;  border: 0;  position: absolute;  height: 100%;  min-width: 100%;  font-size: 13px;  color: #404040;  direction: ltr;  -webkit-text-size-adjust: none;  }  button,  input[type=button],  input[type=submit] {  font-family: Arial, sans-serif;  font-size: 13px;  }  a,  a:hover,  a:visited {  color: #427fed;  cursor: pointer;  text-decoration: none;  }  a:hover {  text-decoration: underline;  }  h1 {  font-size: 20px;  color: #262626;  margin: 0 0 15px;  font-weight: normal;  }  h2 {  font-size: 14px;  color: #262626;  margin: 0 0 15px;  font-weight: bold;  }  input[type=email],  input[type=number],  input[type=password],  input[type=tel],  input[type=text],  input[type=url] {  -moz-appearance: none;  -webkit-appearance: none;  appearance: none;  display: inline-block;  height: 36px;  padding: 0 8px;  margin: 0;  background: #fff;  border: 1px solid #d9d9d9;  border-top: 1px solid #c0c0c0;  -moz-box-sizing: border-box;  -webkit-box-sizing: border-box;  box-sizing: border-box;  -moz-border-radius: 1px;  -webkit-border-radius: 1px;  border-radius: 1px;  font-size: 15px;  color: #404040;  }  input[type=email]:hover,  input[type=number]:hover,  input[type=password]:hover,  input[type=tel]:hover,  input[type=text]:hover,  input[type=url]:hover {  border: 1px solid #b9b9b9;  border-top: 1px solid #a0a0a0;  -moz-box-shadow: inset 0 1px 2px rgba(0,0,0,0.1);  -webkit-box-shadow: inset 0 1px 2px rgba(0,0,0,0.1);  box-shadow: inset 0 1px 2px rgba(0,0,0,0.1);  }  input[type=email]:focus,  input[type=number]:focus,  input[type=password]:focus,  input[type=tel]:focus,  input[type=text]:focus,  input[type=url]:focus {  outline: none;  border: 1px solid #4d90fe;  -moz-box-shadow: inset 0 1px 2px rgba(0,0,0,0.3);  -webkit-box-shadow: inset 0 1px 2px rgba(0,0,0,0.3);  box-shadow: inset 0 1px 2px rgba(0,0,0,0.3);  }  input[type=checkbox],  input[type=radio] {  -webkit-appearance: none;  display: inline-block;  width: 13px;  height: 13px;  margin: 0;  cursor: pointer;  vertical-align: bottom;  background: #fff;  border: 1px solid #c6c6c6;  -moz-border-radius: 1px;  -webkit-border-radius: 1px;  border-radius: 1px;  -moz-box-sizing: border-box;  -webkit-box-sizing: border-box;  box-sizing: border-box;  position: relative;  }  input[type=checkbox]:active,  input[type=radio]:active {  background: #ebebeb;  }  input[type=checkbox]:hover {  border-color: #c6c6c6;  -moz-box-shadow: inset 0 1px 2px rgba(0,0,0,0.1);  -webkit-box-shadow: inset 0 1px 2px rgba(0,0,0,0.1);  box-shadow: inset 0 1px 2px rgba(0,0,0,0.1);  }  input[type=radio] {  -moz-border-radius: 1em;  -webkit-border-radius: 1em;  border-radius: 1em;  width: 15px;  height: 15px;  }  input[type=checkbox]:checked,  input[type=radio]:checked {  background: #fff;  }  input[type=radio]:checked::after {  content: '';  display: block;  position: relative;  top: 3px;  left: 3px;  width: 7px;  height: 7px;  background: #666;  -moz-border-radius: 1em;  -webkit-border-radius: 1em;  border-radius: 1em;  }  input[type=checkbox]:checked::after {  content: url(https://ssl.gstatic.com/ui/v1/menu/checkmark.png);  display: block;  position: absolute;  top: -6px;  left: -5px;  }  input[type=checkbox]:focus {  outline: none;  border-color: #4d90fe;  }  .stacked-label {  display: block;  font-weight: bold;  margin: .5em 0;  }  .hidden-label {  position: absolute !important;  clip: rect(1px 1px 1px 1px); /* IE6, IE7 */  clip: rect(1px, 1px, 1px, 1px);  height: 0px;  width: 0px;  overflow: hidden;  visibility: hidden;  }  input[type=checkbox].form-error,  input[type=email].form-error,  input[type=number].form-error,  input[type=password].form-error,  input[type=text].form-error,  input[type=tel].form-error,  input[type=url].form-error {  border: 1px solid #dd4b39;  }  .error-msg {  margin: .5em 0;  display: block;  color: #dd4b39;  line-height: 17px;  }  .help-link {  background: #dd4b39;  padding: 0 5px;  color: #fff;  font-weight: bold;  display: inline-block;  -moz-border-radius: 1em;  -webkit-border-radius: 1em;  border-radius: 1em;  text-decoration: none;  position: relative;  top: 0px;  }  .help-link:visited {  color: #fff;  }  .help-link:hover {  color: #fff;  background: #c03523;  text-decoration: none;  }  .help-link:active {  opacity: 1;  background: #ae2817;  }  .wrapper {  position: relative;  min-height: 100%;  }  .content {  padding: 0 44px;  }  .main {  padding-bottom: 100px;  }  /* For modern browsers */  .clearfix:before,  .clearfix:after {  content: "";  display: table;  }  .clearfix:after {  clear: both;  }  /* For IE 6/7 (trigger hasLayout) */  .clearfix {  zoom:1;  }  .google-header-bar {  height: 71px;  border-bottom: 1px solid #e5e5e5;  overflow: hidden;  }  .header .logo {  background-image: url(https://ssl.gstatic.com/accounts/ui/logo_1x.png);  background-size: 116px 38px;  background-repeat: no-repeat;  margin: 17px 0 0;  float: left;  height: 38px;  width: 116px;  }  .header .logo-w {  background-image: url(https://ssl.gstatic.com/images/branding/googlelogo/1x/googlelogo_color_112x36dp.png);  background-size: 112px 36px;  margin: 21px 0 0;  }  .header .secondary-link {  margin: 28px 0 0;  float: right;  }  .header .secondary-link a {  font-weight: normal;  }  .google-header-bar.centered {  border: 0;  height: 108px;  }  .google-header-bar.centered .header .logo {  float: none;  margin: 40px auto 30px;  display: block;  }  .google-header-bar.centered .header .secondary-link {  display: none  }  .google-footer-bar {  position: absolute;  bottom: 0;  height: 35px;  width: 100%;  border-top: 1px solid #e5e5e5;  overflow: hidden;  }  .footer {  padding-top: 7px;  font-size: .85em;  white-space: nowrap;  line-height: 0;  }  .footer ul {  float: left;  max-width: 80%;  min-height: 16px;  padding: 0;  }  .footer ul li {  color: #737373;  display: inline;  padding: 0;  padding-right: 1.5em;  }  .footer a {  color: #737373;  }  .lang-chooser-wrap {  float: right;  display: inline;  }  .lang-chooser-wrap img {  vertical-align: top;  }  .lang-chooser {  font-size: 13px;  height: 24px;  line-height: 24px;  }  .lang-chooser option {  font-size: 13px;  line-height: 24px;  }  .hidden {  height: 0px;  width: 0px;  overflow: hidden;  visibility: hidden;  display: none !important;  }  .banner {  text-align: center;  }  .card {  background-color: #f7f7f7;  padding: 20px 25px 30px;  margin: 0 auto 25px;  width: 304px;  -moz-border-radius: 2px;  -webkit-border-radius: 2px;  border-radius: 2px;  -moz-box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3);  -webkit-box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3);  box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3);  }  .card > *:first-child {  margin-top: 0;  }  .rc-button,  .rc-button:visited {  display: inline-block;  min-width: 46px;  text-align: center;  color: #444;  font-size: 14px;  font-weight: 700;  height: 36px;  padding: 0 8px;  line-height: 36px;  -moz-border-radius: 3px;  -webkit-border-radius: 3px;  border-radius: 3px;  -o-transition: all 0.218s;  -moz-transition: all 0.218s;  -webkit-transition: all 0.218s;  transition: all 0.218s;  border: 1px solid #dcdcdc;  background-color: #f5f5f5;  background-image: -webkit-linear-gradient(top,#f5f5f5,#f1f1f1);  background-image: -
  5. можешь объясниться для чего ты отправляешь GET запрос на этот URI?

    пс
    https://cloud.google.com/translate/docs/reference/rest/v2/translate

  6. на дату старайся поглядывать прежде чем что-то копировать))
    Asked 9 years, 4 months ago
    Ответы протухли уже

    пс
    обращайся сначала к первоисточнику, в твоем случае документация от самого гугла, там всё норм расписано
    upload_2021-4-7_19-58-8.png

Статус темы:

Закрыта.

Поделиться этой страницей


  • Search


    • Search all Forums


    • Search this Forum


    • Search this Thread


  • Tools


    • Jump to Forum


  • #1

    May 5, 2013


    Foxbuck


    • View User Profile


    • View Posts


    • Send Message

    View Foxbuck's Profile

    • Out of the Water
    • Location:

      Cincinatti
    • Join Date:

      5/5/2013
    • Posts:

      2
    • Member Details

    Hello,

    I have been making an adventure map recently, and when I published it to LAN so my friends could play, it returned «Internal exception: java.io.IOException: Received string length longer than maximum allowed (21 > 16)»

    I am not sure what the exception means, or even what the string corresponds to. My LAN works for other maps when I publish them (though only through direct connect), but for some reason this map is buggy. Even my backups return the same error.

    When making the map, I used Single Player Commands, but when I am publishing the map I am using vanilla.
    I haven’t added anything that doesn’t exist in vanilla, and though I have used MCedit, I know that that works in vanilla as well.

    Help?

    Last edited by Foxbuck: May 5, 2013


  • #2

    May 26, 2013


    arichy2008


    • View User Profile


    • View Posts


    • Send Message

    View arichy2008's Profile

    • Out of the Water
    • Location:

      not where you are!
    • Join Date:

      11/19/2012
    • Posts:

      7
    • Minecraft:

      Pure__MC
    • Member Details

    i have the same problem and it is happening only on lan… its a hamachi server because i cant port forward yet it has worked up until i used a command block. i think it has something to do with the length of the command block that is used… and the different parameters typed being longer than 16 letters/digits. i hate this right now and i hope that it is fixed by mojang or there is a property on the server.properties list that can make it work.


  • #3

    May 29, 2013


    fghorror3


    • View User Profile


    • View Posts


    • Send Message

    View fghorror3's Profile

    • Stone Miner
    • Join Date:

      3/19/2013
    • Posts:

      93
    • Minecraft:

      redmenacenikolai
    • Member Details

    I have the same problem with one of my maps.
    I moved the map to a new world using MCedit.
    I’m going to see if that works.


  • #4

    Jun 18, 2013

    PLEASE!!! This is happening to me too! except it is 23>16 instead >;l


  • #5

    Jun 18, 2013


    tsteele93


    • View User Profile


    • View Posts


    • Send Message

    View tsteele93's Profile

    • Tree Puncher
    • Join Date:

      5/17/2013
    • Posts:

      33
    • Minecraft:

      tsteele937
    • Member Details

    PLEASE!!! This is happening to me too! except it is 23>16 instead >;l

    I have done some research and it appears to be your user name. I get 17>16 and my user name (e-mail address) is 17 characters (including the @aol.com) Since minecraft has left user names and gone to e-mail, apparently most e-mails are too long with the max being 16 characters. I’m going to see if there is a way to log in with just my user name.

    So far it appears to be MY account that is too long, and not my sons acct. I purchased three accounts so my son, me and a visiting friend would all be able to play together legally and easily. So it is rather frustrating that some sort of copy protection scheme is causing us not to be able to play right now because our user names must be less than 16 characters (including email address info)

    I tried logging in to minecraft.net and changing my email to a shorter one — some throwaway like [email protected] or something shorter than 16 characters. I logged into mojang and clicked the button asking them to send me an e-mail on how to change my e-mail for the game and it said they send it — but I haven’t gotten anything from Mojang. I checked my spam folder too.

    I am THINKING that if I could change my account name to something shorter than 16 characters it might solve the issue.

    TS

  • To post a comment, please login.

Posts Quoted:

Reply

Clear All Quotes


Каждый раз после 3-4 минут на сервере у всех игроков вылетает с ошибкой:
Internal exception: java.io.IOException: Received string length longer than maximum allowed (18 > 16)
1.5.2 Баккит ядро. С хоста, сам я ядро не трогал.
Плагином на увеличения ника и прибавления ничего нету кроме чат менеджера.
  • Фото пользователя

    6 февраля 2016 — 13:56

DRUZHKINSKIJ - скорее игроков не выкидывает, а зайти не могут.  И это связанно с плагином который отвечает за ники игроков.  allowed (18 > 16)
  • Фото пользователя Максим

    Максим

    6 февраля 2016 — 14:14

АНТОН ЛБЕРЕЦКИЙ а именно цветные ники элементы типа &1 увеличивают длину строки а она ограниченная 
  • Фото пользователя

    6 февраля 2016 — 14:24

МАКСИМ ZIGO цветные ники , а еще плагины на кланы с огромными префиксами.

Hey guys,

I have a huge problem on my server right now. Everytime someone joins one of my servers they get a message that says:

Internal Exception: io.netty.handler.codec.DecoderException: java.lang.IndexOutOfBoundsException: readerIndex(9) +length(1) exceeds writerIndex (9_: UnpooledHeapByteBuf(ridx: 9, widx, cap: 9)

This error also occurs on my factions server. They can join the server perfectly but once they start running, after an extended period of time they also get that message. I do not understand what is wrong. We are fine on our storage. 7400/20000. Cpu is fine. But this error is bad.

On the console it says when the user is kicked:

13.06 15:26:10 [Disconnect] User DjNegroBlack has disconnected, reason: Disconnected
13.06 15:26:10 [Server] ERROR io.netty.handler.codec.EncoderException: String too big (was 32789 bytes encoded, max 32767)
13.06 15:26:10 [Server] ERROR io.netty.handler.codec.EncoderException: String too big (was 32789 bytes encoded, max 32767)
13.06 15:26:10 [Server] ERROR io.netty.handler.codec.EncoderException: String too big (was 32789 bytes encoded, max 32767)
13.06 15:26:10 [Server] ERROR io.netty.handler.codec.EncoderException: String too big (was 32789 bytes encoded, max 32767)
13.06 15:26:10 [Server] ERROR io.netty.handler.codec.EncoderException: String too big (was 32789 bytes encoded, max 32767)
13.06 15:26:10 [Server] ERROR io.netty.handler.codec.EncoderException: String too big (was 32789 bytes encoded, max 32767)
13.06 15:26:10 [Server] ERROR io.netty.handler.codec.EncoderException: String too big (was 32789 bytes encoded, max 32767)
13.06 15:26:10 [Server] ERROR io.netty.handler.codec.EncoderException: String too big (was 32789 bytes encoded, max 32767)
13.06 15:26:10 [Server] ERROR io.netty.handler.codec.EncoderException: String too big (was 32789 bytes encoded, max 32767)
13.06 15:26:10 [Server] ERROR io.netty.handler.codec.EncoderException: String too big (was 32789 bytes encoded, max 32767)
13.06 15:26:10 [Server] ERROR io.netty.handler.codec.EncoderException: String too big (was 32789 bytes encoded, max 32767)
13.06 15:26:10 [Server] ERROR io.netty.handler.codec.EncoderException: String too big (was 32789 bytes encoded, max 32767)
13.06 15:26:10 [Server] ERROR io.netty.handler.codec.EncoderException: String too big (was 32789 bytes encoded, max 32767)
13.06 15:26:10 [Server] ERROR io.netty.handler.codec.EncoderException: String too big (was 32789 bytes encoded, max 32767)
13.06 15:26:10 [Server] ERROR io.netty.handler.codec.EncoderException: String too big (was 32789 bytes encoded, max 32767)
13.06 15:26:10 [Server] ERROR io.netty.handler.codec.EncoderException: String too big (was 32789 bytes encoded, max 32767)
13.06 15:26:10 [Server] ERROR io.netty.handler.codec.EncoderException: String too big (was 32789 bytes encoded, max 32767)
13.06 15:26:10 [Server] ERROR io.netty.handler.codec.EncoderException: String too big (was 32789 bytes encoded, max 32767)
13.06 15:26:10 [Server] ERROR io.netty.handler.codec.EncoderException: String too big (was 32789 bytes encoded, max 32767)

If you would like to see the problems yourself the server ip is mc.raidpvp.us.

Thank you for the help,

IDCHAHA

—- Minecraft Crash Report —-
// Who set us up the TNT?

Time: 1.07.2022 15:53
Description: Ticking entity

io.netty.handler.codec.EncoderException: String too big (was 37355 bytes encoded, max 32767)
    at net.minecraft.network.FriendlyByteBuf.m_130072_(FriendlyByteBuf.java:509) ~[client-1.18.2-20220404.173914-srg.jar%23178!/:?] {re:classloading,re:mixin}
    at net.minecraft.network.FriendlyByteBuf.m_130070_(FriendlyByteBuf.java:503) ~[client-1.18.2-20220404.173914-srg.jar%23178!/:?] {re:classloading,re:mixin}
    at electrodynamics.common.packet.types.PacketPlayerInformation.encode(PacketPlayerInformation.java:41) ~[Electrodynamics-1.18.2-0.6.3-10.jar%2393!/:1.18.2-0.6.3-10] {re:classloading}
    at net.minecraftforge.network.simple.IndexedMessageCodec.lambda$tryEncode$4(IndexedMessageCodec.java:121) ~[forge-1.18.2-40.1.54-universal.jar%23183!/:?] {re:classloading}
    at java.util.Optional.ifPresent(Optional.java:178) ~[?:?] {re:mixin}
    at net.minecraftforge.network.simple.IndexedMessageCodec.tryEncode(IndexedMessageCodec.java:119) ~[forge-1.18.2-40.1.54-universal.jar%23183!/:?] {re:classloading}
    at net.minecraftforge.network.simple.IndexedMessageCodec.build(IndexedMessageCodec.java:134) ~[forge-1.18.2-40.1.54-universal.jar%23183!/:?] {re:classloading}
    at net.minecraftforge.network.simple.SimpleChannel.encodeMessage(SimpleChannel.java:77) ~[forge-1.18.2-40.1.54-universal.jar%23183!/:?] {re:mixin,re:classloading}
    at net.minecraftforge.network.simple.SimpleChannel.toBuffer(SimpleChannel.java:90) ~[forge-1.18.2-40.1.54-universal.jar%23183!/:?] {re:mixin,re:classloading}
    at net.minecraftforge.network.simple.SimpleChannel.toVanillaPacket(SimpleChannel.java:121) ~[forge-1.18.2-40.1.54-universal.jar%23183!/:?] {re:mixin,re:classloading}
    at net.minecraftforge.network.simple.SimpleChannel.sendTo(SimpleChannel.java:101) ~[forge-1.18.2-40.1.54-universal.jar%23183!/:?] {re:mixin,re:classloading}
    at net.minecraftforge.network.simple.SimpleChannel.sendToServer(SimpleChannel.java:96) ~[forge-1.18.2-40.1.54-universal.jar%23183!/:?] {re:mixin,re:classloading}
    at electrodynamics.common.event.PlayerHandler.tick(PlayerHandler.java:43) ~[Electrodynamics-1.18.2-0.6.3-10.jar%2393!/:1.18.2-0.6.3-10] {re:classloading}
    at net.minecraftforge.eventbus.ASMEventHandler_767_PlayerHandler_tick_PlayerTickEvent.invoke(.dynamic) ~[?:?] {}
    at net.minecraftforge.eventbus.ASMEventHandler.invoke(ASMEventHandler.java:85) ~[eventbus-5.0.3.jar%232!/:?] {}
    at net.minecraftforge.eventbus.EventBus.post(EventBus.java:302) ~[eventbus-5.0.3.jar%232!/:?] {}
    at net.minecraftforge.eventbus.EventBus.post(EventBus.java:283) ~[eventbus-5.0.3.jar%232!/:?] {}
    at net.minecraftforge.event.ForgeEventFactory.onPlayerPreTick(ForgeEventFactory.java:860) ~[forge-1.18.2-40.1.54-universal.jar%23183!/:?] {re:classloading}
    at net.minecraft.world.entity.player.Player.m_8119_(Player.java:208) ~[client-1.18.2-20220404.173914-srg.jar%23178!/:?] {re:computing_frames,pl:accesstransformer:B,re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:apotheosis.mixins.json:PlayerMixin,pl:mixin:APP:chiselsandbits.mixins.json:client.PlayerScopingMixin,pl:mixin:APP:expandability.mixins.json:swimming.PlayerMixin,pl:mixin:APP:tetra.mixins.json:MixinPlayerEntity,pl:mixin:A}
    at net.minecraft.client.player.LocalPlayer.m_8119_(LocalPlayer.java:183) ~[client-1.18.2-20220404.173914-srg.jar%23178!/:?] {re:computing_frames,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:mixin,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,pl:mixin:APP:caelus.mixins.json:MixinLocalPlayer,pl:mixin:APP:chiselsandbits.mixins.json:client.LocalPlayerScopingMixin,pl:mixin:APP:expandability.mixins.json:swimming.client.LocalPlayerMixin,pl:mixin:APP:create.mixins.json:HeavyBootsOnPlayerMixin,pl:mixin:A,pl:runtimedistcleaner:A}
    at net.minecraft.client.multiplayer.ClientLevel.m_104639_(ClientLevel.java:269) ~[client-1.18.2-20220404.173914-srg.jar%23178!/:?] {re:mixin,xf:OptiFine:default,re:classloading,xf:OptiFine:default,pl:mixin:APP:architectury.mixins.json:MixinClientLevel,pl:mixin:APP:flywheel.mixins.json:ClientLevelMixin,pl:mixin:APP:create.mixins.json:DestroyProgressMixin,pl:mixin:A}
    at net.minecraft.world.level.Level.m_46653_(Level.java:486) ~[client-1.18.2-20220404.173914-srg.jar%23178!/:?] {re:computing_frames,pl:accesstransformer:B,re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:mixins.hammerlib.json:LevelMixin,pl:mixin:APP:sereneseasons.mixins.json:MixinLevel,pl:mixin:A}
    at net.minecraft.client.multiplayer.ClientLevel.lambda$tickEntities$4(ClientLevel.java:246) ~[client-1.18.2-20220404.173914-srg.jar%23178!/:?] {re:mixin,xf:OptiFine:default,re:classloading,xf:OptiFine:default,pl:mixin:APP:architectury.mixins.json:MixinClientLevel,pl:mixin:APP:flywheel.mixins.json:ClientLevelMixin,pl:mixin:APP:create.mixins.json:DestroyProgressMixin,pl:mixin:A}
    at net.minecraft.world.level.entity.EntityTickList.m_156910_(EntityTickList.java:54) ~[client-1.18.2-20220404.173914-srg.jar%23178!/:?] {re:classloading}
    at net.minecraft.client.multiplayer.ClientLevel.m_104804_(ClientLevel.java:242) ~[client-1.18.2-20220404.173914-srg.jar%23178!/:?] {re:mixin,xf:OptiFine:default,re:classloading,xf:OptiFine:default,pl:mixin:APP:architectury.mixins.json:MixinClientLevel,pl:mixin:APP:flywheel.mixins.json:ClientLevelMixin,pl:mixin:APP:create.mixins.json:DestroyProgressMixin,pl:mixin:A}
    at net.minecraft.client.Minecraft.m_91398_(Minecraft.java:1691) ~[client-1.18.2-20220404.173914-srg.jar%23178!/:?] {re:mixin,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,pl:mixin:APP:ae2.mixins.json:PickColorMixin,pl:mixin:APP:architectury.mixins.json:MixinMinecraft,pl:mixin:APP:balm.mixins.json:MinecraftMixin,pl:mixin:APP:bookshelf.common.mixins.json:client.AccessorMinecraft,pl:mixin:APP:flywheel.mixins.json:PausedPartialTickAccessor,pl:mixin:APP:immersiveengineering.mixins.json:accessors.client.MinecraftAccess,pl:mixin:APP:create.mixins.json:WindowResizeMixin,pl:mixin:APP:securitycraft.mixins.json:camera.MinecraftMixin,pl:mixin:A,pl:runtimedistcleaner:A}
    at net.minecraft.client.Minecraft.m_91383_(Minecraft.java:1019) ~[client-1.18.2-20220404.173914-srg.jar%23178!/:?] {re:mixin,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,pl:mixin:APP:ae2.mixins.json:PickColorMixin,pl:mixin:APP:architectury.mixins.json:MixinMinecraft,pl:mixin:APP:balm.mixins.json:MinecraftMixin,pl:mixin:APP:bookshelf.common.mixins.json:client.AccessorMinecraft,pl:mixin:APP:flywheel.mixins.json:PausedPartialTickAccessor,pl:mixin:APP:immersiveengineering.mixins.json:accessors.client.MinecraftAccess,pl:mixin:APP:create.mixins.json:WindowResizeMixin,pl:mixin:APP:securitycraft.mixins.json:camera.MinecraftMixin,pl:mixin:A,pl:runtimedistcleaner:A}
    at net.minecraft.client.Minecraft.m_91374_(Minecraft.java:663) ~[client-1.18.2-20220404.173914-srg.jar%23178!/:?] {re:mixin,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,pl:mixin:APP:ae2.mixins.json:PickColorMixin,pl:mixin:APP:architectury.mixins.json:MixinMinecraft,pl:mixin:APP:balm.mixins.json:MinecraftMixin,pl:mixin:APP:bookshelf.common.mixins.json:client.AccessorMinecraft,pl:mixin:APP:flywheel.mixins.json:PausedPartialTickAccessor,pl:mixin:APP:immersiveengineering.mixins.json:accessors.client.MinecraftAccess,pl:mixin:APP:create.mixins.json:WindowResizeMixin,pl:mixin:APP:securitycraft.mixins.json:camera.MinecraftMixin,pl:mixin:A,pl:runtimedistcleaner:A}
    at net.minecraft.client.main.Main.main(Main.java:205) ~[client-1.18.2-20220404.173914-srg.jar%23178!/:?] {re:classloading,pl:runtimedistcleaner:A}
    at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:?] {}
    at jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) ~[?:?] {}
    at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:?] {}
    at java.lang.reflect.Method.invoke(Method.java:568) ~[?:?] {}
    at net.minecraftforge.fml.loading.targets.CommonClientLaunchHandler.lambda$launchService$0(CommonClientLaunchHandler.java:31) ~[fmlloader-1.18.2-40.1.54.jar%2316!/:?] {}
    at cpw.mods.modlauncher.LaunchServiceHandlerDecorator.launch(LaunchServiceHandlerDecorator.java:37) [modlauncher-9.1.3.jar%235!/:?] {}
    at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:53) [modlauncher-9.1.3.jar%235!/:?] {}
    at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:71) [modlauncher-9.1.3.jar%235!/:?] {}
    at cpw.mods.modlauncher.Launcher.run(Launcher.java:106) [modlauncher-9.1.3.jar%235!/:?] {}
    at cpw.mods.modlauncher.Launcher.main(Launcher.java:77) [modlauncher-9.1.3.jar%235!/:?] {}
    at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:26) [modlauncher-9.1.3.jar%235!/:?] {}
    at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:23) [modlauncher-9.1.3.jar%235!/:?] {}
    at cpw.mods.bootstraplauncher.BootstrapLauncher.main(BootstrapLauncher.java:149) [bootstraplauncher-1.0.0.jar:?] {}


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

— Head —
Thread: Render thread
Stacktrace:
    at net.minecraft.network.FriendlyByteBuf.m_130072_(FriendlyByteBuf.java:509) ~[client-1.18.2-20220404.173914-srg.jar%23178!/:?] {re:classloading,re:mixin}
    at net.minecraft.network.FriendlyByteBuf.m_130070_(FriendlyByteBuf.java:503) ~[client-1.18.2-20220404.173914-srg.jar%23178!/:?] {re:classloading,re:mixin}
    at electrodynamics.common.packet.types.PacketPlayerInformation.encode(PacketPlayerInformation.java:41) ~[Electrodynamics-1.18.2-0.6.3-10.jar%2393!/:1.18.2-0.6.3-10] {re:classloading}
    at net.minecraftforge.network.simple.IndexedMessageCodec.lambda$tryEncode$4(IndexedMessageCodec.java:121) ~[forge-1.18.2-40.1.54-universal.jar%23183!/:?] {re:classloading}
    at java.util.Optional.ifPresent(Optional.java:178) ~[?:?] {re:mixin}
    at net.minecraftforge.network.simple.IndexedMessageCodec.tryEncode(IndexedMessageCodec.java:119) ~[forge-1.18.2-40.1.54-universal.jar%23183!/:?] {re:classloading}
    at net.minecraftforge.network.simple.IndexedMessageCodec.build(IndexedMessageCodec.java:134) ~[forge-1.18.2-40.1.54-universal.jar%23183!/:?] {re:classloading}
    at net.minecraftforge.network.simple.SimpleChannel.encodeMessage(SimpleChannel.java:77) ~[forge-1.18.2-40.1.54-universal.jar%23183!/:?] {re:mixin,re:classloading}
    at net.minecraftforge.network.simple.SimpleChannel.toBuffer(SimpleChannel.java:90) ~[forge-1.18.2-40.1.54-universal.jar%23183!/:?] {re:mixin,re:classloading}
    at net.minecraftforge.network.simple.SimpleChannel.toVanillaPacket(SimpleChannel.java:121) ~[forge-1.18.2-40.1.54-universal.jar%23183!/:?] {re:mixin,re:classloading}
    at net.minecraftforge.network.simple.SimpleChannel.sendTo(SimpleChannel.java:101) ~[forge-1.18.2-40.1.54-universal.jar%23183!/:?] {re:mixin,re:classloading}
    at net.minecraftforge.network.simple.SimpleChannel.sendToServer(SimpleChannel.java:96) ~[forge-1.18.2-40.1.54-universal.jar%23183!/:?] {re:mixin,re:classloading}
    at electrodynamics.common.event.PlayerHandler.tick(PlayerHandler.java:43) ~[Electrodynamics-1.18.2-0.6.3-10.jar%2393!/:1.18.2-0.6.3-10] {re:classloading}
    at net.minecraftforge.eventbus.ASMEventHandler_767_PlayerHandler_tick_PlayerTickEvent.invoke(.dynamic) ~[?:?] {}
    at net.minecraftforge.eventbus.ASMEventHandler.invoke(ASMEventHandler.java:85) ~[eventbus-5.0.3.jar%232!/:?] {}
    at net.minecraftforge.eventbus.EventBus.post(EventBus.java:302) ~[eventbus-5.0.3.jar%232!/:?] {}
    at net.minecraftforge.eventbus.EventBus.post(EventBus.java:283) ~[eventbus-5.0.3.jar%232!/:?] {}
    at net.minecraftforge.event.ForgeEventFactory.onPlayerPreTick(ForgeEventFactory.java:860) ~[forge-1.18.2-40.1.54-universal.jar%23183!/:?] {re:classloading}
    at net.minecraft.world.entity.player.Player.m_8119_(Player.java:208) ~[client-1.18.2-20220404.173914-srg.jar%23178!/:?] {re:computing_frames,pl:accesstransformer:B,re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:apotheosis.mixins.json:PlayerMixin,pl:mixin:APP:chiselsandbits.mixins.json:client.PlayerScopingMixin,pl:mixin:APP:expandability.mixins.json:swimming.PlayerMixin,pl:mixin:APP:tetra.mixins.json:MixinPlayerEntity,pl:mixin:A}
    at net.minecraft.client.player.LocalPlayer.m_8119_(LocalPlayer.java:183) ~[client-1.18.2-20220404.173914-srg.jar%23178!/:?] {re:computing_frames,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:mixin,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,pl:mixin:APP:caelus.mixins.json:MixinLocalPlayer,pl:mixin:APP:chiselsandbits.mixins.json:client.LocalPlayerScopingMixin,pl:mixin:APP:expandability.mixins.json:swimming.client.LocalPlayerMixin,pl:mixin:APP:create.mixins.json:HeavyBootsOnPlayerMixin,pl:mixin:A,pl:runtimedistcleaner:A}
    at net.minecraft.client.multiplayer.ClientLevel.m_104639_(ClientLevel.java:269) ~[client-1.18.2-20220404.173914-srg.jar%23178!/:?] {re:mixin,xf:OptiFine:default,re:classloading,xf:OptiFine:default,pl:mixin:APP:architectury.mixins.json:MixinClientLevel,pl:mixin:APP:flywheel.mixins.json:ClientLevelMixin,pl:mixin:APP:create.mixins.json:DestroyProgressMixin,pl:mixin:A}
    at net.minecraft.world.level.Level.m_46653_(Level.java:486) ~[client-1.18.2-20220404.173914-srg.jar%23178!/:?] {re:computing_frames,pl:accesstransformer:B,re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:mixins.hammerlib.json:LevelMixin,pl:mixin:APP:sereneseasons.mixins.json:MixinLevel,pl:mixin:A}
    at net.minecraft.client.multiplayer.ClientLevel.lambda$tickEntities$4(ClientLevel.java:246) ~[client-1.18.2-20220404.173914-srg.jar%23178!/:?] {re:mixin,xf:OptiFine:default,re:classloading,xf:OptiFine:default,pl:mixin:APP:architectury.mixins.json:MixinClientLevel,pl:mixin:APP:flywheel.mixins.json:ClientLevelMixin,pl:mixin:APP:create.mixins.json:DestroyProgressMixin,pl:mixin:A}
    at net.minecraft.world.level.entity.EntityTickList.m_156910_(EntityTickList.java:54) ~[client-1.18.2-20220404.173914-srg.jar%23178!/:?] {re:classloading}
    at net.minecraft.client.multiplayer.ClientLevel.m_104804_(ClientLevel.java:242) ~[client-1.18.2-20220404.173914-srg.jar%23178!/:?] {re:mixin,xf:OptiFine:default,re:classloading,xf:OptiFine:default,pl:mixin:APP:architectury.mixins.json:MixinClientLevel,pl:mixin:APP:flywheel.mixins.json:ClientLevelMixin,pl:mixin:APP:create.mixins.json:DestroyProgressMixin,pl:mixin:A}
— Entity being ticked —
Details:
    Entity Type: minecraft:player (net.minecraft.client.player.LocalPlayer)
    Entity ID: 329
    Entity Name: Batuh
    Entity’s Exact location: 25.50, 66.00, 25.50
    Entity’s Block location: World: (25,66,25), Section: (at 9,2,9 in 1,4,1; chunk contains blocks 16,-64,16 to 31,319,31), Region: (0,0; contains chunks 0,0 to 31,31, blocks 0,-64,0 to 511,319,511)
    Entity’s Momentum: 0.00, -0.08, 0.00
    Entity’s Passengers: []
    Entity’s Vehicle: null
Stacktrace:
    at net.minecraft.world.level.Level.m_46653_(Level.java:486) ~[client-1.18.2-20220404.173914-srg.jar%23178!/:?] {re:computing_frames,pl:accesstransformer:B,re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:mixins.hammerlib.json:LevelMixin,pl:mixin:APP:sereneseasons.mixins.json:MixinLevel,pl:mixin:A}
    at net.minecraft.client.multiplayer.ClientLevel.lambda$tickEntities$4(ClientLevel.java:246) ~[client-1.18.2-20220404.173914-srg.jar%23178!/:?] {re:mixin,xf:OptiFine:default,re:classloading,xf:OptiFine:default,pl:mixin:APP:architectury.mixins.json:MixinClientLevel,pl:mixin:APP:flywheel.mixins.json:ClientLevelMixin,pl:mixin:APP:create.mixins.json:DestroyProgressMixin,pl:mixin:A}
    at net.minecraft.world.level.entity.EntityTickList.m_156910_(EntityTickList.java:54) ~[client-1.18.2-20220404.173914-srg.jar%23178!/:?] {re:classloading}
    at net.minecraft.client.multiplayer.ClientLevel.m_104804_(ClientLevel.java:242) ~[client-1.18.2-20220404.173914-srg.jar%23178!/:?] {re:mixin,xf:OptiFine:default,re:classloading,xf:OptiFine:default,pl:mixin:APP:architectury.mixins.json:MixinClientLevel,pl:mixin:APP:flywheel.mixins.json:ClientLevelMixin,pl:mixin:APP:create.mixins.json:DestroyProgressMixin,pl:mixin:A}
    at net.minecraft.client.Minecraft.m_91398_(Minecraft.java:1691) ~[client-1.18.2-20220404.173914-srg.jar%23178!/:?] {re:mixin,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,pl:mixin:APP:ae2.mixins.json:PickColorMixin,pl:mixin:APP:architectury.mixins.json:MixinMinecraft,pl:mixin:APP:balm.mixins.json:MinecraftMixin,pl:mixin:APP:bookshelf.common.mixins.json:client.AccessorMinecraft,pl:mixin:APP:flywheel.mixins.json:PausedPartialTickAccessor,pl:mixin:APP:immersiveengineering.mixins.json:accessors.client.MinecraftAccess,pl:mixin:APP:create.mixins.json:WindowResizeMixin,pl:mixin:APP:securitycraft.mixins.json:camera.MinecraftMixin,pl:mixin:A,pl:runtimedistcleaner:A}
    at net.minecraft.client.Minecraft.m_91383_(Minecraft.java:1019) ~[client-1.18.2-20220404.173914-srg.jar%23178!/:?] {re:mixin,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,pl:mixin:APP:ae2.mixins.json:PickColorMixin,pl:mixin:APP:architectury.mixins.json:MixinMinecraft,pl:mixin:APP:balm.mixins.json:MinecraftMixin,pl:mixin:APP:bookshelf.common.mixins.json:client.AccessorMinecraft,pl:mixin:APP:flywheel.mixins.json:PausedPartialTickAccessor,pl:mixin:APP:immersiveengineering.mixins.json:accessors.client.MinecraftAccess,pl:mixin:APP:create.mixins.json:WindowResizeMixin,pl:mixin:APP:securitycraft.mixins.json:camera.MinecraftMixin,pl:mixin:A,pl:runtimedistcleaner:A}
    at net.minecraft.client.Minecraft.m_91374_(Minecraft.java:663) ~[client-1.18.2-20220404.173914-srg.jar%23178!/:?] {re:mixin,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,pl:mixin:APP:ae2.mixins.json:PickColorMixin,pl:mixin:APP:architectury.mixins.json:MixinMinecraft,pl:mixin:APP:balm.mixins.json:MinecraftMixin,pl:mixin:APP:bookshelf.common.mixins.json:client.AccessorMinecraft,pl:mixin:APP:flywheel.mixins.json:PausedPartialTickAccessor,pl:mixin:APP:immersiveengineering.mixins.json:accessors.client.MinecraftAccess,pl:mixin:APP:create.mixins.json:WindowResizeMixin,pl:mixin:APP:securitycraft.mixins.json:camera.MinecraftMixin,pl:mixin:A,pl:runtimedistcleaner:A}
    at net.minecraft.client.main.Main.main(Main.java:205) ~[client-1.18.2-20220404.173914-srg.jar%23178!/:?] {re:classloading,pl:runtimedistcleaner:A}
    at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:?] {}
    at jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) ~[?:?] {}
    at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:?] {}
    at java.lang.reflect.Method.invoke(Method.java:568) ~[?:?] {}
    at net.minecraftforge.fml.loading.targets.CommonClientLaunchHandler.lambda$launchService$0(CommonClientLaunchHandler.java:31) ~[fmlloader-1.18.2-40.1.54.jar%2316!/:?] {}
    at cpw.mods.modlauncher.LaunchServiceHandlerDecorator.launch(LaunchServiceHandlerDecorator.java:37) [modlauncher-9.1.3.jar%235!/:?] {}
    at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:53) [modlauncher-9.1.3.jar%235!/:?] {}
    at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:71) [modlauncher-9.1.3.jar%235!/:?] {}
    at cpw.mods.modlauncher.Launcher.run(Launcher.java:106) [modlauncher-9.1.3.jar%235!/:?] {}
    at cpw.mods.modlauncher.Launcher.main(Launcher.java:77) [modlauncher-9.1.3.jar%235!/:?] {}
    at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:26) [modlauncher-9.1.3.jar%235!/:?] {}
    at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:23) [modlauncher-9.1.3.jar%235!/:?] {}
    at cpw.mods.bootstraplauncher.BootstrapLauncher.main(BootstrapLauncher.java:149) [bootstraplauncher-1.0.0.jar:?] {}


— Affected level —
Details:
    All players: 1 total; [LocalPlayer[‘Batuh’/329, l=’ClientLevel’, x=25.50, y=66.00, z=25.50]]
    Chunk stats: 121, 57
    Level dimension: minecraft:overworld
    Level spawn location: World: (16,67,32), Section: (at 0,3,0 in 1,4,2; chunk contains blocks 16,-64,32 to 31,319,47), Region: (0,0; contains chunks 0,0 to 31,31, blocks 0,-64,0 to 511,319,511)
    Level time: 60 game time, 60 day time
    Server brand: forge
    Server type: Integrated singleplayer server
Stacktrace:
    at net.minecraft.client.multiplayer.ClientLevel.m_6026_(ClientLevel.java:516) ~[client-1.18.2-20220404.173914-srg.jar%23178!/:?] {re:mixin,xf:OptiFine:default,re:classloading,xf:OptiFine:default,pl:mixin:APP:architectury.mixins.json:MixinClientLevel,pl:mixin:APP:flywheel.mixins.json:ClientLevelMixin,pl:mixin:APP:create.mixins.json:DestroyProgressMixin,pl:mixin:A}
    at net.minecraft.client.Minecraft.m_91354_(Minecraft.java:2260) ~[client-1.18.2-20220404.173914-srg.jar%23178!/:?] {re:mixin,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,pl:mixin:APP:ae2.mixins.json:PickColorMixin,pl:mixin:APP:architectury.mixins.json:MixinMinecraft,pl:mixin:APP:balm.mixins.json:MinecraftMixin,pl:mixin:APP:bookshelf.common.mixins.json:client.AccessorMinecraft,pl:mixin:APP:flywheel.mixins.json:PausedPartialTickAccessor,pl:mixin:APP:immersiveengineering.mixins.json:accessors.client.MinecraftAccess,pl:mixin:APP:create.mixins.json:WindowResizeMixin,pl:mixin:APP:securitycraft.mixins.json:camera.MinecraftMixin,pl:mixin:A,pl:runtimedistcleaner:A}
    at net.minecraft.client.Minecraft.m_91374_(Minecraft.java:680) ~[client-1.18.2-20220404.173914-srg.jar%23178!/:?] {re:mixin,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,pl:mixin:APP:ae2.mixins.json:PickColorMixin,pl:mixin:APP:architectury.mixins.json:MixinMinecraft,pl:mixin:APP:balm.mixins.json:MinecraftMixin,pl:mixin:APP:bookshelf.common.mixins.json:client.AccessorMinecraft,pl:mixin:APP:flywheel.mixins.json:PausedPartialTickAccessor,pl:mixin:APP:immersiveengineering.mixins.json:accessors.client.MinecraftAccess,pl:mixin:APP:create.mixins.json:WindowResizeMixin,pl:mixin:APP:securitycraft.mixins.json:camera.MinecraftMixin,pl:mixin:A,pl:runtimedistcleaner:A}
    at net.minecraft.client.main.Main.main(Main.java:205) ~[client-1.18.2-20220404.173914-srg.jar%23178!/:?] {re:classloading,pl:runtimedistcleaner:A}
    at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:?] {}
    at jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) ~[?:?] {}
    at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:?] {}
    at java.lang.reflect.Method.invoke(Method.java:568) ~[?:?] {}
    at net.minecraftforge.fml.loading.targets.CommonClientLaunchHandler.lambda$launchService$0(CommonClientLaunchHandler.java:31) ~[fmlloader-1.18.2-40.1.54.jar%2316!/:?] {}
    at cpw.mods.modlauncher.LaunchServiceHandlerDecorator.launch(LaunchServiceHandlerDecorator.java:37) [modlauncher-9.1.3.jar%235!/:?] {}
    at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:53) [modlauncher-9.1.3.jar%235!/:?] {}
    at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:71) [modlauncher-9.1.3.jar%235!/:?] {}
    at cpw.mods.modlauncher.Launcher.run(Launcher.java:106) [modlauncher-9.1.3.jar%235!/:?] {}
    at cpw.mods.modlauncher.Launcher.main(Launcher.java:77) [modlauncher-9.1.3.jar%235!/:?] {}
    at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:26) [modlauncher-9.1.3.jar%235!/:?] {}
    at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:23) [modlauncher-9.1.3.jar%235!/:?] {}
    at cpw.mods.bootstraplauncher.BootstrapLauncher.main(BootstrapLauncher.java:149) [bootstraplauncher-1.0.0.jar:?] {}


— Last reload —
Details:
    Reload number: 1
    Reload reason: initial
    Finished: Yes
    Packs: Mod Resources, Default, Copper Legacy Pack.zip, Tissou’s Zombie Pack 1.18_2.1.zip, guiretextures-darkmode-1.7.4.zip, quark-emote-pack, Solar Flux Generated Resources

— System Details —
Details:
    Minecraft Version: 1.18.2
    Minecraft Version ID: 1.18.2
    Operating System: Windows 10 (amd64) version 10.0
    Java Version: 17.0.3.1, Oracle Corporation
    Java VM Version: Java HotSpot(TM) 64-Bit Server VM (mixed mode, sharing), Oracle Corporation
    Memory: 7236154376 bytes (6900 MiB) / 11408506880 bytes (10880 MiB) up to 16777216000 bytes (16000 MiB)
    CPUs: 4
    Processor Vendor: GenuineIntel
    Processor Name: Intel(R) Core(TM) i5-7300HQ CPU @ 2.50GHz
    Identifier: Intel64 Family 6 Model 158 Stepping 9
    Microarchitecture: Kaby Lake
    Frequency (GHz): 2,50
    Number of physical packages: 1
    Number of physical CPUs: 4
    Number of logical CPUs: 4
    Graphics card #0 name: NVIDIA GeForce GTX 1050 Ti
    Graphics card #0 vendor: NVIDIA (0x10de)
    Graphics card #0 VRAM (MB): 4095,00
    Graphics card #0 deviceId: 0x1c8c
    Graphics card #0 versionInfo: DriverVersion=31.0.15.1659
    Graphics card #1 name: Intel(R) HD Graphics 630
    Graphics card #1 vendor: Intel Corporation (0x8086)
    Graphics card #1 VRAM (MB): 1024,00
    Graphics card #1 deviceId: 0x591b
    Graphics card #1 versionInfo: DriverVersion=26.20.100.7325
    Memory slot #0 capacity (MB): 16384,00
    Memory slot #0 clockSpeed (GHz): 2,40
    Memory slot #0 type: DDR4
    Memory slot #1 capacity (MB): 8192,00
    Memory slot #1 clockSpeed (GHz): 2,40
    Memory slot #1 type: DDR4
    Virtual memory max (MB): 58557,02
    Virtual memory used (MB): 24288,58
    Swap memory total (MB): 34096,00
    Swap memory used (MB): 1022,54
    JVM Flags: 9 total; -XX:HeapDumpPath=MojangTricksIntelDriversForPerformance_javaw.exe_minecraft.exe.heapdump -Xss1M -Xmx16000M -XX:+UnlockExperimentalVMOptions -XX:+UseG1GC -XX:G1NewSizePercent=20 -XX:G1ReservePercent=20 -XX:MaxGCPauseMillis=50 -XX:G1HeapRegionSize=32M
    Launched Version: 1.18.2-forge-40.1.54
    Backend library: LWJGL version 3.2.2 SNAPSHOT
    Backend API: NVIDIA GeForce GTX 1050 Ti/PCIe/SSE2 GL version 3.2.0 NVIDIA 516.59, NVIDIA Corporation
    Window size: 1920×1080
    GL Caps: Using framebuffer using OpenGL 3.2
    GL debug messages:
    Using VBOs: Yes
    Is Modded: Definitely; Client brand changed to ‘forge’; Server brand changed to ‘forge’
    Type: Integrated Server (map_client.txt)
    Graphics mode: fast
    Resource Packs: vanilla, file/Copper Legacy Pack.zip, file/Tissou’s Zombie Pack 1.18_2.1.zip, file/guiretextures-darkmode-1.7.4.zip
    Current Language: Türkçe (Türkiye)
    CPU: 4x Intel(R) Core(TM) i5-7300HQ CPU @ 2.50GHz
    Server Running: true
    Player Count: 1 / 8; [ServerPlayer[‘Batuh’/329, l=’ServerLevel[Yeni Dünya]’, x=25.50, y=66.00, z=25.50]]
    Data Packs: vanilla, mod:betterdungeons, mod:supermartijn642configlib, mod:refinedpipes, mod:hammerlib (incompatible), mod:sophisticatedcore (incompatible), mod:neat (incompatible), mod:forgeendertech, mod:cookingforblockheads (incompatible), mod:controlling (incompatible), mod:placebo (incompatible), mod:citadel (incompatible), mod:alexsmobs (incompatible), mod:yungsapi, mod:moreminecarts (incompatible), mod:culinaryconstruct (incompatible), mod:bookshelf, mod:sophisticatedbackpacks (incompatible), mod:simpleplanes (incompatible), mod:apotheosis (incompatible), mod:mekanismgenerators, mod:balm (incompatible), mod:carryon (incompatible), mod:adpother, mod:jeresources (incompatible), mod:ninjaphenix_container_lib (incompatible), mod:mob_grinding_utils (incompatible), mod:refinedstorage, mod:upgradednetherite (incompatible), mod:chipped (incompatible), mod:industrialforegoing (incompatible), mod:farmersdelight (incompatible), mod:morevillagers (incompatible), mod:bcc (incompatible), mod:biomesoplenty (incompatible), mod:ironfurnaces (incompatible), mod:wirelesschargers, mod:supermartijn642corelib, mod:spark (incompatible), mod:solarflux (incompatible), mod:curios (incompatible), mod:tetra (incompatible), mod:patchouli (incompatible), mod:easypaxel (incompatible), mod:oreexcavation, mod:nuclearscience (incompatible), mod:lostcities (incompatible), mod:betterstrongholds, mod:expandedstorage, mod:mekanismtools, mod:constructionwand, mod:cfm, mod:architectury (incompatible), mod:curiouselytra (incompatible), mod:framework (incompatible), mod:bettermineshafts, mod:cyclic, mod:quarkoddities (incompatible), mod:cucumber, mod:ftblibrary (incompatible), mod:ftbranks (incompatible), mod:cgm, mod:jei (incompatible), mod:projecte, mod:mekanism, mod:caelus (incompatible), mod:ringsofascension (incompatible), mod:waystones (incompatible), mod:journeymap, mod:comforts (incompatible), mod:artifacts, mod:storagenetwork (incompatible), mod:sereneseasons (incompatible), mod:configured (incompatible), mod:modularforcefields (incompatible), mod:decorative_blocks, mod:dungeoncrawl, mod:betteranimalsplus (incompatible), mod:pneumaticcraft, mod:mcjtylib (incompatible), mod:rftoolsbase (incompatible), mod:rftoolsstorage (incompatible), mod:rftoolsdim (incompatible), mod:electrodynamics (incompatible), mod:rftoolspower (incompatible), mod:forge, mod:selene (incompatible), mod:mysticalagriculture, mod:zerocore, mod:bigreactors, mod:useless_sword, mod:cofh_core, mod:thermal, mod:thermal_integration, mod:thermal_innovation, mod:thermal_expansion, mod:thermal_locomotion (incompatible), mod:tconstruct (incompatible), mod:rftoolsutility (incompatible), mod:enchdesc (incompatible), mod:theoneprobe (incompatible), mod:ae2 (incompatible), mod:terrablender (incompatible), mod:mousetweaks (incompatible), mod:titanium (incompatible), mod:immersiveengineering, mod:adlods, mod:nethersdelight (incompatible), mod:rftoolsbuilder (incompatible), mod:flywheel (incompatible), mod:create, mod:mutil (incompatible), mod:mantle (incompatible), mod:thermal_cultivation, mod:justenoughprofessions (incompatible), mod:autoreglib (incompatible), mod:quark (incompatible), mod:securitycraft (incompatible), mod:storagedrawers (incompatible), mod:upgradedcore (incompatible), mod:appleskin (incompatible), mod:upgradednetherite_ultimate (incompatible), mod:aquaculture (incompatible), mod:expandability (incompatible), mod:cosmeticarmorreworked (incompatible), mod:chiselsandbits (incompatible), mod:createaddition (incompatible), Solar Flux Generated Resources
    World Generation: Stable
    OptiFine Version: OptiFine_1.18.2_HD_U_H7
    OptiFine Build: 20220410-185216
    Render Distance Chunks: 2
    Mipmaps: 4
    Anisotropic Filtering: 1
    Antialiasing: 0
    Multitexture: false
    Shaders: null
    OpenGlVersion: 3.2.0 NVIDIA 516.59
    OpenGlRenderer: NVIDIA GeForce GTX 1050 Ti/PCIe/SSE2
    OpenGlVendor: NVIDIA Corporation
    CpuCount: 4
    ModLauncher: 9.1.3+9.1.3+main.9b69c82a
    ModLauncher launch target: forgeclient
    ModLauncher naming: srg
    ModLauncher services:
         mixin PLUGINSERVICE
         eventbus PLUGINSERVICE
         slf4jfixer PLUGINSERVICE
         object_holder_definalize PLUGINSERVICE
         runtime_enum_extender PLUGINSERVICE
         capability_token_subclass PLUGINSERVICE
         accesstransformer PLUGINSERVICE
         runtimedistcleaner PLUGINSERVICE
         mixin TRANSFORMATIONSERVICE
         OptiFine TRANSFORMATIONSERVICE
         fml TRANSFORMATIONSERVICE
    FML Language Providers:
        minecraft@1.0
        lowcodefml@null
        javafml@null
    Mod List:
        YungsBetterDungeons-1.18.2-Forge-2.1.0.jar        |YUNG’s Better Dungeons        |betterdungeons                |1.18.2-Forge-2.1.0  |DONE      |Manifest: NOSIGNATURE
        supermartijn642configlib-1.1.3-forge-mc1.18.jar   |SuperMartijn642’s Config Libra|supermartijn642configlib      |1.1.3               |DONE      |Manifest: NOSIGNATURE
        refinedpipes-0.6.2.jar                            |Refined Pipes                 |refinedpipes                  |0.6.2               |DONE      |Manifest: NOSIGNATURE
        HammerLib-1.18.2-18.2.16.jar                      |HammerLib                     |hammerlib                     |18.2.16             |DONE      |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
        sophisticatedcore-1.18.2-0.3.1.39.jar             |Sophisticated Core            |sophisticatedcore             |1.18.2-0.3.1.39     |DONE      |Manifest: NOSIGNATURE
        Neat 1.8-30.jar                                   |Neat                          |neat                          |1.8-30              |DONE      |Manifest: NOSIGNATURE
        ForgeEndertech-1.18.2-9.0.2.0-build.0935.jar      |ForgeEndertech                |forgeendertech                |9.0.2.0             |DONE      |Manifest: NOSIGNATURE
        cookingforblockheads-forge-1.18.2-12.0.1.jar      |CookingForBlockheads          |cookingforblockheads          |12.0.1              |DONE      |Manifest: NOSIGNATURE
        Controlling-forge-1.18.2-9.0+19.jar               |Controlling                   |controlling                   |9.0+19              |DONE      |Manifest: NOSIGNATURE
        Placebo-1.18.2-6.4.0.jar                          |Placebo                       |placebo                       |6.4.0               |DONE      |Manifest: NOSIGNATURE
        citadel-1.11.3-1.18.2.jar                         |Citadel                       |citadel                       |1.11.3              |DONE      |Manifest: NOSIGNATURE
        alexsmobs-1.18.3.jar                              |Alex’s Mobs                   |alexsmobs                     |1.18.3              |DONE      |Manifest: NOSIGNATURE
        YungsApi-1.18.2-Forge-2.0.8.jar                   |YUNG’s API                    |yungsapi                      |1.18.2-Forge-2.0.8  |DONE      |Manifest: NOSIGNATURE
        moreminecarts-1.4.6.jar                           |More Minecarts                |moreminecarts                 |1.4.6               |DONE      |Manifest: NOSIGNATURE
        culinaryconstruct-forge-1.18.2-4.3.1.0.jar        |Culinary Construct            |culinaryconstruct             |1.18.2-4.3.1.0      |DONE      |Manifest: NOSIGNATURE
        Bookshelf-Forge-1.18.2-13.2.20.jar                |Bookshelf                     |bookshelf                     |13.2.20             |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.18.2-3.17.4.592.jar      |Sophisticated Backpacks       |sophisticatedbackpacks        |1.18.2-3.17.4.592   |DONE      |Manifest: NOSIGNATURE
        simpleplanes-1.18.2-4.13.4.jar                    |Simple Planes                 |simpleplanes                  |1.18.2-4.13.4       |DONE      |Manifest: NOSIGNATURE
        Apotheosis-1.18.2-5.3.5.jar                       |Apotheosis                    |apotheosis                    |5.3.5               |DONE      |Manifest: NOSIGNATURE
        MekanismGenerators-1.18.2-10.2.3.463.jar          |Mekanism: Generators          |mekanismgenerators            |10.2.3              |DONE      |Manifest: NOSIGNATURE
        balm-3.0.3+0.jar                                  |Balm                          |balm                          |3.0.3+0             |DONE      |Manifest: NOSIGNATURE
        carryon-1.18.2-1.17.0.8.jar                       |Carry On                      |carryon                       |1.17.0.8            |DONE      |Manifest: NOSIGNATURE
        AdPother-1.18.2-6.0.2.1-build.0943.jar            |Pollution of the Realms       |adpother                      |6.0.2.1             |DONE      |Manifest: NOSIGNATURE
        JustEnoughResources-1.18.2-0.14.1.170.jar         |Just Enough Resources         |jeresources                   |0.14.1.170          |DONE      |Manifest: NOSIGNATURE
        ninjaphenix-container-library-1.3.0+1.18-forge.jar|NinjaPhenix’s Container Librar|ninjaphenix_container_lib     |1.3.0               |DONE      |Manifest: NOSIGNATURE
        mob_grinding_utils-1.18.2-0.4.39.jar              |Mob Grinding Utils            |mob_grinding_utils            |1.18.2-0.4.39       |DONE      |Manifest: NOSIGNATURE
        refinedstorage-1.10.2.jar                         |Refined Storage               |refinedstorage                |1.10.2              |DONE      |Manifest: NOSIGNATURE
        upgradednetherite-1.18.2-4.2.0.6-release.jar      |Upgraded Netherite            |upgradednetherite             |1.18.2-4.2.0.6-relea|DONE      |Manifest: NOSIGNATURE
        chipped-1.18.2-1.2.1-forge.jar                    |Chipped                       |chipped                       |1.18.2-1.2.1-forge  |DONE      |Manifest: NOSIGNATURE
        industrial-foregoing-1.18.2-3.3.1.1-3.jar         |Industrial Foregoing          |industrialforegoing           |3.3.1.1             |DONE      |Manifest: NOSIGNATURE
        FarmersDelight-1.18.2-1.1.1.jar                   |Farmer’s Delight              |farmersdelight                |1.18.2-1.1.1        |DONE      |Manifest: NOSIGNATURE
        morevillagers-FORGE-1.18.2-3.2.0.jar              |More Villagers                |morevillagers                 |3.2.0               |DONE      |Manifest: NOSIGNATURE
        BetterCompatibilityChecker-1.1.14-build.26+mc1.18.|Better Compatibility Checker  |bcc                           |1.1.14-build.26+mc1.|DONE      |Manifest: NOSIGNATURE
        BiomesOPlenty-1.18.2-16.0.0.109-universal(1).jar  |Biomes O’ Plenty              |biomesoplenty                 |1.18.2-16.0.0.109   |DONE      |Manifest: NOSIGNATURE
        ironfurnaces-1.18.2-3.3.1.jar                     |Iron Furnaces                 |ironfurnaces                  |3.3.1               |DONE      |Manifest: NOSIGNATURE
        wirelesschargers-1.0.6-forge-mc1.18.jar           |Wireless Chargers             |wirelesschargers              |1.0.6               |DONE      |Manifest: NOSIGNATURE
        supermartijn642corelib-1.0.18-forge-mc1.18.jar    |SuperMartijn642’s Core Lib    |supermartijn642corelib        |1.0.18              |DONE      |Manifest: NOSIGNATURE
        spark-1.9.11-forge.jar                            |spark                         |spark                         |1.9.11              |DONE      |Manifest: NOSIGNATURE
        SolarFluxReborn-1.18.2-18.2.4.jar                 |Solar Flux Reborn             |solarflux                     |18.2.4              |DONE      |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
        curios-forge-1.18.2-5.0.7.0.jar                   |Curios API                    |curios                        |1.18.2-5.0.7.0      |DONE      |Manifest: NOSIGNATURE
        tetra-1.18.2-4.9.3.jar                            |Tetra                         |tetra                         |4.9.3               |DONE      |Manifest: NOSIGNATURE
        Patchouli-1.18.2-69.jar                           |Patchouli                     |patchouli                     |0.0NONE             |DONE      |Manifest: NOSIGNATURE
        EasyPaxel1.18.2(FORGE)vs1.0.11.jar                |Easy Paxel                    |easypaxel                     |1.18.2-1.0.11       |DONE      |Manifest: NOSIGNATURE
        OreExcavation-1.10.161.jar                        |OreExcavation                 |oreexcavation                 |1.10.161            |DONE      |Manifest: NOSIGNATURE
        Nuclear Science-1.18.2-0.4.8-10.jar               |Nuclear Science               |nuclearscience                |1.18.2-0.4.8-10     |DONE      |Manifest: NOSIGNATURE
        lostcities-1.18-5.2.4.jar                         |LostCities                    |lostcities                    |1.18-5.2.4          |DONE      |Manifest: NOSIGNATURE
        YungsBetterStrongholds-1.18.2-Forge-2.1.1.jar     |YUNG’s Better Strongholds     |betterstrongholds             |1.18.2-Forge-2.1.1  |DONE      |Manifest: NOSIGNATURE
        expandedstorage-7.3.11+1.18.2.jar                 |Expanded Storage              |expandedstorage               |7.3.11              |DONE      |Manifest: NOSIGNATURE
        MekanismTools-1.18.2-10.2.3.463.jar               |Mekanism: Tools               |mekanismtools                 |10.2.3              |DONE      |Manifest: NOSIGNATURE
        constructionwand-1.18.2-2.7.jar                   |Construction Wand             |constructionwand              |1.18.2-2.7          |DONE      |Manifest: NOSIGNATURE
        cfm-7.0.0-pre29-1.18.2.jar                        |MrCrayfish’s Furniture Mod    |cfm                           |7.0.0-pre29         |DONE      |Manifest: NOSIGNATURE
        architectury-4.4.70.jar                           |Architectury                  |architectury                  |4.4.70              |DONE      |Manifest: NOSIGNATURE
        curiouselytra-forge-1.18.1-5.0.1.0.jar            |Curious Elytra                |curiouselytra                 |1.18.1-5.0.1.0      |DONE      |Manifest: NOSIGNATURE
        framework-0.2.3-1.18.2.jar                        |Framework                     |framework                     |0.2.3               |DONE      |Manifest: NOSIGNATURE
        YungsBetterMineshafts-1.18.2-Forge-2.1.3.jar      |YUNG’s Better Mineshafts      |bettermineshafts              |1.18.2-Forge-2.1.3  |DONE      |Manifest: NOSIGNATURE
        Cyclic-1.18.2-1.7.1.jar                           |Cyclic                        |cyclic                        |1.18.2-1.7.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
        QuarkOddities-1.18.jar                            |Quark Oddities                |quarkoddities                 |1.18                |DONE      |Manifest: NOSIGNATURE
        Cucumber-1.18.2-5.1.1.jar                         |Cucumber Library              |cucumber                      |5.1.1               |DONE      |Manifest: NOSIGNATURE
        ftb-library-forge-1802.3.6-build.123.jar          |FTB Library                   |ftblibrary                    |1802.3.6-build.123  |DONE      |Manifest: NOSIGNATURE
        ftb-ranks-forge-1802.1.8-build.34.jar             |FTB Ranks                     |ftbranks                      |1802.1.8-build.34   |DONE      |Manifest: NOSIGNATURE
        cgm-1.2.5-1.18.2.jar                              |MrCrayfish’s Gun Mod          |cgm                           |1.2.5               |DONE      |Manifest: NOSIGNATURE
        jei-1.18.2-9.7.0.196.jar                          |Just Enough Items             |jei                           |9.7.0.196           |DONE      |Manifest: NOSIGNATURE
        ProjectE-1.18.2-PE1.0.1.jar                       |ProjectE                      |projecte                      |1.0.1               |DONE      |Manifest: NOSIGNATURE
        Mekanism-1.18.2-10.2.3.463.jar                    |Mekanism                      |mekanism                      |10.2.3              |DONE      |Manifest: NOSIGNATURE
        caelus-forge-1.18.1-3.0.0.2.jar                   |Caelus API                    |caelus                        |1.18.1-3.0.0.2      |DONE      |Manifest: NOSIGNATURE
        RingsOfAscension-1.18.2-1.0.1.jar                 |Rings of Ascension            |ringsofascension              |1.0.0               |DONE      |Manifest: NOSIGNATURE
        waystones-forge-1.18.2-10.0.0.jar                 |Waystones                     |waystones                     |10.0.0              |DONE      |Manifest: NOSIGNATURE
        journeymap-1.18.2-5.8.5-forge.jar                 |Journeymap                    |journeymap                    |5.8.5               |DONE      |Manifest: NOSIGNATURE
        comforts-forge-1.18.2-5.0.0.4.jar                 |Comforts                      |comforts                      |1.18.2-5.0.0.4      |DONE      |Manifest: NOSIGNATURE
        artifacts-1.18.2-4.0.7.jar                        |Artifacts                     |artifacts                     |1.18.2-4.0.7        |DONE      |Manifest: NOSIGNATURE
        SimpleStorageNetwork-1.18.2-1.6.1.jar             |Simple Storage Network        |storagenetwork                |1.18.2-1.6.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
        Serene Seasons-1.18.2-7.0.0.13.jar                |Serene Seasons                |sereneseasons                 |1.18.2-7.0.0.13     |DONE      |Manifest: NOSIGNATURE
        configured-1.5.3-1.18.2.jar                       |Configured                    |configured                    |1.5.3               |DONE      |Manifest: NOSIGNATURE
        Modular+Forcefields-1.18.2-0.0.1-2.jar            |Modular Forcefields           |modularforcefields            |1.18.2-0.0.1-2      |DONE      |Manifest: NOSIGNATURE
        Decorative Blocks-forge-1.18.2-2.1.0.jar          |Decorative Blocks             |decorative_blocks             |2.1.0               |DONE      |Manifest: NOSIGNATURE
        DungeonCrawl-1.18.2-2.3.8.jar                     |Dungeon Crawl                 |dungeoncrawl                  |2.3.8               |DONE      |Manifest: NOSIGNATURE
        betteranimalsplus-1.18.2-11.0.5-forge.jar         |Better Animals Plus           |betteranimalsplus             |1.18.2-11.0.5       |DONE      |Manifest: NOSIGNATURE
        pneumaticcraft-repressurized-1.18.2-3.2.4-93.jar  |PneumaticCraft: Repressurized |pneumaticcraft                |1.18.2-3.2.4-93     |DONE      |Manifest: NOSIGNATURE
        mcjtylib-1.18-6.0.15.jar                          |McJtyLib                      |mcjtylib                      |1.18-6.0.15         |DONE      |Manifest: NOSIGNATURE
        rftoolsbase-1.18-3.0.9.jar                        |RFToolsBase                   |rftoolsbase                   |1.18-3.0.9          |DONE      |Manifest: NOSIGNATURE
        rftoolsstorage-1.18-3.0.8.jar                     |RFToolsStorage                |rftoolsstorage                |1.18-3.0.8          |DONE      |Manifest: NOSIGNATURE
        rftoolsdim-1.18-8.0.6.jar                         |RFToolsDimensions             |rftoolsdim                    |1.18-8.0.6          |DONE      |Manifest: NOSIGNATURE
        Electrodynamics-1.18.2-0.6.3-10.jar               |Electrodynamics               |electrodynamics               |1.18.2-0.6.3-10     |DONE      |Manifest: NOSIGNATURE
        rftoolspower-1.18-4.0.5.jar                       |RFToolsPower                  |rftoolspower                  |1.18-4.0.5          |DONE      |Manifest: NOSIGNATURE
        forge-1.18.2-40.1.54-universal.jar                |Forge                         |forge                         |40.1.54             |DONE      |Manifest: 84:ce:76:e8:45:35:e4:0e:63:86:df:47:59:80:0f:67:6c:c1:5f:6e:5f:4d:b3:54:47:1a:9f:7f:ed:5e:f2:90
        selene-1.18.2-1.17.5.jar                          |Selene                        |selene                        |1.18.2-1.17.5       |DONE      |Manifest: NOSIGNATURE
        MysticalAgriculture-1.18.2-5.1.0(1).jar           |Mystical Agriculture          |mysticalagriculture           |5.1.0               |DONE      |Manifest: NOSIGNATURE
        ZeroCore2-1.18.2-2.1.17.jar                       |Zero CORE 2                   |zerocore                      |1.18.2-2.1.17       |DONE      |Manifest: NOSIGNATURE
        ExtremeReactors2-1.18.2-2.0.45.jar                |Extreme Reactors              |bigreactors                   |1.18.2-2.0.45       |DONE      |Manifest: NOSIGNATURE
        useless-sword-1.18.2-V1.4.1.jar                   |Useless Sword                 |useless_sword                 |1.4.1               |DONE      |Manifest: NOSIGNATURE
        client-1.18.2-20220404.173914-srg.jar             |Minecraft                     |minecraft                     |1.18.2              |DONE      |Manifest: a1:d4:5e:04:4f:d3:d6:e0:7b:37:97:cf:77:b0:de:ad:4a:47:ce:8c:96:49:5f:0a:cf:8c:ae:b2:6d:4b:8a:3f
        cofh_core-1.18.2-1.6.3.19.jar                     |CoFH Core                     |cofh_core                     |1.6.3.19            |DONE      |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.18.2-1.6.2.27.jar            |Thermal Series                |thermal                       |1.6.2.27            |DONE      |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_integration-1.18.2-1.6.0.6.jar            |Thermal Integration           |thermal_integration           |1.6.0.6             |DONE      |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.18.2-1.6.1.10.jar            |Thermal Innovation            |thermal_innovation            |1.6.1.10            |DONE      |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.18.2-1.6.1.11.jar             |Thermal Expansion             |thermal_expansion             |1.6.1.11            |DONE      |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.18.2-1.6.0.6.jar             |Thermal Locomotion            |thermal_locomotion            |1.6.0.6             |DONE      |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.18.2-3.5.0.17.jar                    |Tinkers’ Construct            |tconstruct                    |3.5.0.17            |DONE      |Manifest: NOSIGNATURE
        rftoolsutility-1.18-4.0.16.jar                    |RFToolsUtility                |rftoolsutility                |1.18-4.0.16         |DONE      |Manifest: NOSIGNATURE
        EnchantmentDescriptions-Forge-1.18.2-10.0.3.jar   |EnchantmentDescriptions       |enchdesc                      |10.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
        theoneprobe-1.18-5.1.0.jar                        |The One Probe                 |theoneprobe                   |1.18-5.1.0          |DONE      |Manifest: NOSIGNATURE
        appliedenergistics2-11.1.2.jar                    |Applied Energistics 2         |ae2                           |11.1.2              |DONE      |Manifest: NOSIGNATURE
        TerraBlender-forge-1.18.2-1.1.0.102.jar           |TerraBlender                  |terrablender                  |1.18.2-1.1.0.102    |DONE      |Manifest: NOSIGNATURE
        MouseTweaks-forge-mc1.18-2.21.jar                 |Mouse Tweaks                  |mousetweaks                   |2.21                |DONE      |Manifest: NOSIGNATURE
        titanium-1.18.2-3.5.6-38.jar                      |Titanium                      |titanium                      |3.5.6               |DONE      |Manifest: NOSIGNATURE
        ImmersiveEngineering-1.18.2-8.0.2-149.jar         |Immersive Engineering         |immersiveengineering          |1.18.2-8.0.2-149    |DONE      |Manifest: NOSIGNATURE
        AdLods-1.18.2-6.0.0.0-build.0342.jar              |Large Ore Deposits            |adlods                        |6.0.0.0             |DONE      |Manifest: NOSIGNATURE
        NethersDelight-1.18.2-2.2.0.jar                   |Nethers Delight               |nethersdelight                |2.2                 |DONE      |Manifest: NOSIGNATURE
        rftoolsbuilder-1.18-4.0.12.jar                    |RFToolsBuilder                |rftoolsbuilder                |1.18-4.0.12         |DONE      |Manifest: NOSIGNATURE
        flywheel-forge-1.18-0.6.2.jar                     |Flywheel                      |flywheel                      |1.18-0.6.2          |DONE      |Manifest: NOSIGNATURE
        create-mc1.18.2_v0.4.1.jar                        |Create                        |create                        |0.4.1               |DONE      |Manifest: NOSIGNATURE
        mutil-1.18.2-4.5.0.jar                            |mutil                         |mutil                         |4.5.0               |DONE      |Manifest: NOSIGNATURE
        Mantle-1.18.2-1.9.20.jar                          |Mantle                        |mantle                        |1.9.20              |DONE      |Manifest: NOSIGNATURE
        thermal_cultivation-1.18.2-1.6.1.9.jar            |Thermal Cultivation           |thermal_cultivation           |1.6.1.9             |DONE      |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
        JustEnoughProfessions-1.18.2-1.2.2.jar            |Just Enough Professions (JEP) |justenoughprofessions         |1.2.2               |DONE      |Manifest: NOSIGNATURE
        AutoRegLib-1.7-53.jar                             |AutoRegLib                    |autoreglib                    |1.7-53              |DONE      |Manifest: NOSIGNATURE
        Quark-3.2-357.jar                                 |Quark                         |quark                         |3.2-357             |DONE      |Manifest: NOSIGNATURE
        [1.18.2] SecurityCraft v1.9.2.jar                 |SecurityCraft                 |securitycraft                 |1.9.2               |DONE      |Manifest: NOSIGNATURE
        StorageDrawers-1.18.2-10.2.1.jar                  |Storage Drawers               |storagedrawers                |10.2.1              |DONE      |Manifest: NOSIGNATURE
        upgradedcore-1.18.2-3.2.0.0-release.jar           |Upgraded Core                 |upgradedcore                  |1.18.2-3.2.0.0-relea|DONE      |Manifest: NOSIGNATURE
        appleskin-forge-mc1.18-2.4.0.jar                  |AppleSkin                     |appleskin                     |2.4.0+mc1.18        |DONE      |Manifest: NOSIGNATURE
        upgradednetherite_ultimate-1.18.2-3.2.0.1-release.|Upgraded Netherite : Ultimerit|upgradednetherite_ultimate    |1.18.2-3.2.0.1-relea|DONE      |Manifest: NOSIGNATURE
        Aquaculture-1.18.2-2.3.6.jar                      |Aquaculture 2                 |aquaculture                   |1.18.2-2.3.6        |DONE      |Manifest: NOSIGNATURE
        expandability-6.0.0.jar                           |ExpandAbility                 |expandability                 |6.0.0               |DONE      |Manifest: NOSIGNATURE
        CosmeticArmorReworked-1.18.2-v2.jar               |CosmeticArmorReworked         |cosmeticarmorreworked         |1.18.2-v2           |DONE      |Manifest: 5e:ed:25:99:e4:44:14:c0:dd:89:c1:a9:4c:10:b5:0d:e4:b1:52:50:45:82:13:d8:d0:32:89:67:56:57:01:53
        ChiselsBits-forge-1.18.2-1.2.90-universal.jar     |Chisels & bits                |chiselsandbits                |1.2.90              |DONE      |Manifest: NOSIGNATURE
        createaddition-1.18.2-20220517a.jar               |Create Crafts & Additions     |createaddition                |1.18.2-20220517a    |DONE      |Manifest: NOSIGNATURE
    Crash Report UUID: 0cd94391-5282-4695-b3ff-ecbeafb18fd4
    FML: 40.1
    Forge: net.minecraftforge:40.1.54
    Flywheel Backend: GL33 Instanced Arrays

Describe the bug
With a large number of Mods I can not join my server anymore.

Steps to Reproduce
Steps to reproduce the behavior:

  • installing my current Dev-Build Modpack Version. SF3-0.4.1-dev2.zip
  • create a server by copying the files to a Fabric Server Instance
  • remove some client Mods (Sodium, Indium, …)
  • start the server
  • join
  • fail

Screenshots
image

Environment (please complete the following information with the version):

  • Minecraft: 1.18.2
  • Mod Loader: Fabric

Logs
https://gist.github.com/MSandro/d82b258379abed78a8bcc0b4fa83aad8

Additional context
I am struggling with this issue since 3 weeks, Everyone says, RebornCore is causing this issue.
I didn’t want to believe that, but since I don’t know what to do next, I’m going to create an issue here as well.
someaddons/connectivity#37 (comment)


  • Search


    • Search all Forums


    • Search this Forum


    • Search this Thread


  • Tools


    • Jump to Forum


  • #1

    May 5, 2013


    Foxbuck


    • View User Profile


    • View Posts


    • Send Message



    View Foxbuck's Profile

    • Out of the Water
    • Location:

      Cincinatti
    • Join Date:

      5/5/2013
    • Posts:

      2
    • Member Details

    Hello,

    I have been making an adventure map recently, and when I published it to LAN so my friends could play, it returned «Internal exception: java.io.IOException: Received string length longer than maximum allowed (21 > 16)»

    I am not sure what the exception means, or even what the string corresponds to. My LAN works for other maps when I publish them (though only through direct connect), but for some reason this map is buggy. Even my backups return the same error.

    When making the map, I used Single Player Commands, but when I am publishing the map I am using vanilla.
    I haven’t added anything that doesn’t exist in vanilla, and though I have used MCedit, I know that that works in vanilla as well.

    Help?

    Last edited by Foxbuck: May 5, 2013


  • #2

    May 26, 2013


    arichy2008


    • View User Profile


    • View Posts


    • Send Message



    View arichy2008's Profile

    • Out of the Water
    • Location:

      not where you are!
    • Join Date:

      11/19/2012
    • Posts:

      7
    • Minecraft:

      Pure__MC
    • Member Details

    i have the same problem and it is happening only on lan… its a hamachi server because i cant port forward yet it has worked up until i used a command block. i think it has something to do with the length of the command block that is used… and the different parameters typed being longer than 16 letters/digits. i hate this right now and i hope that it is fixed by mojang or there is a property on the server.properties list that can make it work.


  • #3

    May 29, 2013


    fghorror3


    • View User Profile


    • View Posts


    • Send Message



    View fghorror3's Profile

    • Stone Miner
    • Join Date:

      3/19/2013
    • Posts:

      93
    • Minecraft:

      redmenacenikolai
    • Member Details

    I have the same problem with one of my maps.
    I moved the map to a new world using MCedit.
    I’m going to see if that works.


  • #4

    Jun 18, 2013

    PLEASE!!! This is happening to me too! except it is 23>16 instead >;l


  • #5

    Jun 18, 2013


    tsteele93


    • View User Profile


    • View Posts


    • Send Message



    View tsteele93's Profile

    • Tree Puncher
    • Join Date:

      5/17/2013
    • Posts:

      33
    • Minecraft:

      tsteele937
    • Member Details

    PLEASE!!! This is happening to me too! except it is 23>16 instead >;l

    I have done some research and it appears to be your user name. I get 17>16 and my user name (e-mail address) is 17 characters (including the @aol.com) Since minecraft has left user names and gone to e-mail, apparently most e-mails are too long with the max being 16 characters. I’m going to see if there is a way to log in with just my user name.

    So far it appears to be MY account that is too long, and not my sons acct. I purchased three accounts so my son, me and a visiting friend would all be able to play together legally and easily. So it is rather frustrating that some sort of copy protection scheme is causing us not to be able to play right now because our user names must be less than 16 characters (including email address info)

    I tried logging in to minecraft.net and changing my email to a shorter one — some throwaway like [email protected] or something shorter than 16 characters. I logged into mojang and clicked the button asking them to send me an e-mail on how to change my e-mail for the game and it said they send it — but I haven’t gotten anything from Mojang. I checked my spam folder too.

    I am THINKING that if I could change my account name to something shorter than 16 characters it might solve the issue.

    TS

  • To post a comment, please login.

Posts Quoted:

Reply

Clear All Quotes



  • Search


    • Search all Forums


    • Search this Forum


    • Search this Thread


  • Tools


    • Jump to Forum


  • #1

    May 31, 2018

    [21:58:27] [Netty Epoll Server IO #1/INFO] [neid]: Patching class: «net.minecraft.network.play.server.SPacketBlockAction» with Transformer Group: «TransformerGroupBlockHardcoredConstants»
    [21:58:35] [User Authenticator #1/INFO] [net.minecraft.server.network.NetHandlerLoginServer]: UUID of player MAPsterxo is 6053c471-2528-45b6-a232-6fede867e610
    [21:58:35] [Netty Epoll Server IO #2/INFO] [FML]: Client protocol version 2
    [21:58:35] [Netty Epoll Server IO #2/INFO] [FML]: Client attempting to join with 259 mods : [email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected]@[email protected],[email protected],[email protected]_1.12-d4e654e,[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected]+release.110.b4fac73,[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],enderiointegration[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected]@[email protected]@[email protected]@[email protected]@[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected] 2.6.1,[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],opencomputers|[email protected],[email protected],[email protected],[email protected],[email protected],[email protected],[email protected]
    [21:58:35] [Netty Epoll Server IO #2/INFO] [FML]: Attempting connection with missing mods [bedpatch] at CLIENT
    [21:58:35] [Netty Epoll Server IO #2/INFO] [journeymap]: CLIENT
    [21:58:52] [Server thread/INFO] [FML]: [Server thread] Server side modded connection established
    [21:58:52] [Server thread/INFO] [mcjty.lib.varia.Logging]: SMP: Sync dimensions to client
    [21:58:52] [Server thread/ERROR] [cyclicmagic]: Data not found for MAPsterxo
    [21:58:52] [Server thread/INFO] [net.minecraft.server.management.PlayerList]: MAPsterxo[/37.201.194.103:50650] logged in with entity id 2995 at (-322.5, 71.0, 509.5)
    [21:58:52] [Server thread/INFO] [net.minecraft.server.dedicated.DedicatedServer]: MAPsterxo joined the game
    [21:58:52] [Server thread/INFO] [journeymap]: MAPsterxo joining dimension 0
    [21:58:52] [Server thread/ERROR] [FML]: FMLIndexedMessageCodec exception caught
    io.netty.handler.codec.EncoderException: java.lang.RuntimeException: Undefined discriminator for message type DimensionPermissionPacket in channel jm_dim_permission
    at io.netty.handler.codec.MessageToMessageEncoder.write(MessageToMessageEncoder.java:106) ~[minecraft_server.1.12.2.jar:?]
    at io.netty.handler.codec.MessageToMessageCodec.write(MessageToMessageCodec.java:116) ~[minecraft_server.1.12.2.jar:?]
    at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:738) ~[minecraft_server.1.12.2.jar:?]
    at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:801) ~[minecraft_server.1.12.2.jar:?]
    at io.netty.channel.AbstractChannelHandlerContext.write(AbstractChannelHandlerContext.java:814) ~[minecraft_server.1.12.2.jar:?]
    at io.netty.channel.AbstractChannelHandlerContext.writeAndFlush(AbstractChannelHandlerContext.java:794) ~[minecraft_server.1.12.2.jar:?]
    at io.netty.channel.AbstractChannelHandlerContext.writeAndFlush(AbstractChannelHandlerContext.java:831) ~[minecraft_server.1.12.2.jar:?]
    at io.netty.channel.DefaultChannelPipeline.writeAndFlush(DefaultChannelPipeline.java:1032) ~[minecraft_server.1.12.2.jar:?]
    at io.netty.channel.AbstractChannel.writeAndFlush(AbstractChannel.java:296) ~[minecraft_server.1.12.2.jar:?]
    at net.minecraftforge.fml.common.network.simpleimpl.SimpleNetworkWrapper.sendTo(SimpleNetworkWrapper.java:250) [SimpleNetworkWrapper.class:?]
    at journeymap.common.network.PacketHandler.sendDimensionPacketToPlayer(PacketHandler.java:60) [PacketHandler.class:1.12.2-5.5.2]
    at journeymap.server.events.ForgeEvents.on(ForgeEvents.java:68) [ForgeEvents.class:1.12.2-5.5.2]
    at net.minecraftforge.fml.common.eventhandler.ASMEventHandler_2054_ForgeEvents_on_EntityJoinWorldEvent.invoke(.dynamic) [?:?]
    at net.minecraftforge.fml.common.eventhandler.ASMEventHandler.invoke(ASMEventHandler.java:90) [ASMEventHandler.class:?]
    at net.minecraftforge.fml.common.eventhandler.EventBus.post(EventBus.java:182) [EventBus.class:?]
    at net.minecraft.world.World.func_72838_d(World.java:1205) [amu.class:?]at net.minecraft.world.WorldServer.func_72838_d(WorldServer.java:1058) [oo.class:?]
    at net.minecraft.server.management.PlayerList.func_72377_c(PlayerList.java:376) [pl.class:?]
    at net.minecraft.server.management.PlayerList.initializeConnectionToPlayer(PlayerList.java:165) [pl.class:?]
    at shadows.fastbench.net.HijackedDedicatedPlayerList.initializeConnectionToPlayer(HijackedDedicatedPlayerList.java:19) [HijackedDedicatedPlayerList.class:?]
    at net.minecraftforge.fml.common.network.handshake.NetworkDispatcher.completeServerSideConnection(NetworkDispatcher.java:256) [NetworkDispatcher.class:?]
    at net.minecraftforge.fml.common.network.handshake.NetworkDispatcher.access$100(NetworkDispatcher.java:72) [NetworkDispatcher.class:?]
    at net.minecraftforge.fml.common.network.handshake.NetworkDispatcher$1.func_73660_a(NetworkDispatcher.java:205) [NetworkDispatcher$1.class:?]
    at net.minecraft.network.NetworkManager.func_74428_b(NetworkManager.java:285) [gw.class:?]
    at net.minecraft.network.NetworkSystem.func_151269_c(NetworkSystem.java:180) [oz.class:?]
    at net.minecraft.server.MinecraftServer.func_71190_q(MinecraftServer.java:790) [MinecraftServer.class:?]
    at net.minecraft.server.dedicated.DedicatedServer.func_71190_q(DedicatedServer.java:396) [nz.class:?]
    at net.minecraft.server.MinecraftServer.func_71217_p(MinecraftServer.java:668) [MinecraftServer.class:?]
    at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:526) [MinecraftServer.class:?]
    at java.lang.Thread.run(Thread.java:748) [?:1.8.0_171]
    Caused by: java.lang.RuntimeException: Undefined discriminator for message type DimensionPermissionPacket in channel jm_dim_permission
    at net.minecraftforge.fml.common.network.FMLIndexedMessageToMessageCodec.encode(FMLIndexedMessageToMessageCodec.java:72) ~[FMLIndexedMessageToMessageCodec.class:?]
    at io.netty.handler.codec.MessageToMessageCodec$1.encode(MessageToMessageCodec.java:67) ~[minecraft_server.1.12.2.jar:?]
    at io.netty.handler.codec.MessageToMessageEncoder.write(MessageToMessageEncoder.java:88) ~[minecraft_server.1.12.2.jar:?]
    … 29 more
    [21:58:52] [Server thread/INFO] [EnderCore]: Sending server configs to client for com.enderio.core.common.config.ConfigHandler
    [21:58:52] [Netty Epoll Server IO #2/ERROR] [FML]: NetworkDispatcher exception
    io.netty.handler.codec.EncoderException: String too big (was 36483 bytes encoded, max 32767)
    at net.minecraft.network.PacketBuffer.func_180714_a(PacketBuffer.java:400) ~[gy.class:?]
    at net.minecraft.network.PacketBuffer.func_179256_a(PacketBuffer.java:181) ~[gy.class:?]
    at net.minecraft.network.play.server.SPacketChat.func_148840_b(SourceFile:35) ~[in.class:?]
    at net.minecraft.network.NettyPacketEncoder.encode(NettyPacketEncoder.java:51) ~[ha.class:?]
    at net.minecraft.network.NettyPacketEncoder.encode(NettyPacketEncoder.java:12) ~[ha.class:?]
    at io.netty.handler.codec.MessageToByteEncoder.write(MessageToByteEncoder.java:107) ~[minecraft_server.1.12.2.jar:?]
    at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:738) ~[minecraft_server.1.12.2.jar:?]
    at io.netty.channel.AbstractChannelHandlerContext.invokeWrite(AbstractChannelHandlerContext.java:730) ~[minecraft_server.1.12.2.jar:?]
    at io.netty.channel.AbstractChannelHandlerContext.write(AbstractChannelHandlerContext.java:816) ~[minecraft_server.1.12.2.jar:?]
    at io.netty.channel.AbstractChannelHandlerContext.write(AbstractChannelHandlerContext.java:723) ~[minecraft_server.1.12.2.jar:?]
    at net.minecraftforge.fml.common.network.handshake.NetworkDispatcher.write(NetworkDispatcher.java:549) ~[NetworkDispatcher.class:?]
    at io.netty.channel.AbstractChannelHandlerContext.invokeWrite0(AbstractChannelHandlerContext.java:738) ~[minecraft_server.1.12.2.jar:?]
    at io.netty.channel.AbstractChannelHandlerContext.invokeWriteAndFlush(AbstractChannelHandlerContext.java:801) ~[minecraft_server.1.12.2.jar:?]
    at io.netty.channel.AbstractChannelHandlerContext.write(AbstractChannelHandlerContext.java:814) ~[minecraft_server.1.12.2.jar:?]
    at io.netty.channel.AbstractChannelHandlerContext.writeAndFlush(AbstractChannelHandlerContext.java:794) ~[minecraft_server.1.12.2.jar:?]
    at io.netty.channel.AbstractChannelHandlerContext.writeAndFlush(AbstractChannelHandlerContext.java:831) ~[minecraft_server.1.12.2.jar:?]
    at io.netty.channel.DefaultChannelPipeline.writeAndFlush(DefaultChannelPipeline.java:1032) ~[minecraft_server.1.12.2.jar:?]
    at io.netty.channel.AbstractChannel.writeAndFlush(AbstractChannel.java:296) ~[minecraft_server.1.12.2.jar:?]
    at net.minecraft.network.NetworkManager$4.run(NetworkManager.java:245) [gw$4.class:?]
    at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java:163) [minecraft_server.1.12.2.jar:?]
    at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:403) [minecraft_server.1.12.2.jar:?]
    at io.netty.channel.epoll.EpollEventLoop.run(EpollEventLoop.java:304) [minecraft_server.1.12.2.jar:?]
    at io.netty.util.concurrent.SingleThreadEventExecutor$5.run(SingleThreadEventExecutor.java:858) [minecraft_server.1.12.2.jar:?]
    at java.lang.Thread.run(Thread.java:748) [?:1.8.0_171]
    [21:58:52] [Server thread/INFO] [wizardry]: Sending module list to MAPsterxo
    [21:58:52] [Server thread/INFO] [mcjty.lib.varia.Logging]: SMP: Player logged in: Sync diminfo to clients
    [21:58:52] [Server thread/INFO] [mcjty.lib.varia.Logging]: Send dimlet rules to the client
    [21:58:52] [Server thread/INFO] [mcjty.lib.varia.Logging]: Rules packet size: 5779 of 8192
    [21:58:53] [Server thread/INFO] [Actually Additions]: Sending Player Data to player MAPsterxo with UUID 6053c471-2528-45b6-a232-6fede867e610.
    [21:58:53] [Server thread/INFO] [Mekanism]: Sent config to ‘MAPsterxo.’
    [21:58:53] [Server thread/INFO] [journeymap]: Sending log in packet.
    [21:58:53] [Server thread/INFO] [STDOUT]: [com.blamejared.initialinventory.events.CommonEventHandler:lambda$playerLogin$0:28]: [email protected]:-1
    [21:58:53] [Server thread/INFO] [Astral Sorcery]: [AstralSorcery] Synchronizing configuration to MAPsterxo
    [21:58:54] [Server thread/INFO] [net.minecraft.network.NetHandlerPlayServer]: MAPsterxo lost connection: Internal Exception: io.netty.handler.codec.EncoderException: String too big (was 36483 bytes encoded, max 32767

    [21:58:54] [Server thread/INFO] [net.minecraft.server.dedicated.DedicatedServer]: MAPsterxo left the game
    [21:58:54] [Server thread/WARN] [twilightforest]: Mod was keeping bauble items in reserve for player %s but they logged out! Items are being dropped.
    >

    Hello everyone,

    I want to run a minecraft server running the modpack «all the mods 3», version 5.9.6b and MC version 1.12.2. Unfortunately all players trying to connect get disconnected (see log above)

    I do no understand the error messages, I just see that lots of exceptions get thrown and some string (what string ? ) is too big. I highlighted all lines that I think are important in the above log.

    Let me say Two things: This server is set up completely new. Such string errors occured in the past from griefers using a hacked client and placing «hacked signs» that contained too many characters. This can not be the case !

    And the log says that the client is missing «bedpatch». This is not true, I checked my client and bedpatch is checked !

    And let me add one last thing before I start the technical description: I ran for several months an FTB:infinity evolved server. So I know that minecraft works ! It seems to be connected to ATM3

    Changes I did to ATM3:

    • disabled Draconic evolution (by naming the .jar to .jar.disabled in the mods folder)
    • disabled terraqueous
    • disabled AbyssalCraft and Abyssalcraft Integration
    • disabled Plants (mod)
    • disabled taint in Thaumcraft (by changing the config)
    • disabled several biomes in biomesoplenty

    Technical server info (it’s a vserver):

    12GB ram

    Intel(R) Xeon(R) CPU E5-2620 v3 @ 2.40GHz

    Ubuntu 16.04

    java 1.8.0_171 ( just updated )

    I am really mad right now because I can’t figure out what’s wrong. I would greatly appreciate any help or ideas what to do.

    Best regards

    MAPster


  • #2

    May 31, 2018

    update: When launching the ATM3 server in standard configuration I can connect. The connection still throws lots of errors, but the server then runs smoothly and I can walk around and do stuff.
    I will keep this updated as I progress.

    Best regards

    MAPster

  • To post a comment, please login.

Posts Quoted:

Reply

Clear All Quotes


Каждый раз после 3-4 минут на сервере у всех игроков вылетает с ошибкой:
Internal exception: java.io.IOException: Received string length longer than maximum allowed (18 > 16)
1.5.2 Баккит ядро. С хоста, сам я ядро не трогал.
Плагином на увеличения ника и прибавления ничего нету кроме чат менеджера.

  • Фото пользователя

    6 февраля 2016 — 13:56

DRUZHKINSKIJ - скорее игроков не выкидывает, а зайти не могут.  И это связанно с плагином который отвечает за ники игроков.  allowed (18 > 16)
  • Фото пользователя Максим

    Максим

    6 февраля 2016 — 14:14

АНТОН ЛБЕРЕЦКИЙ а именно цветные ники элементы типа &1 увеличивают длину строки а она ограниченная 
  • Фото пользователя

    6 февраля 2016 — 14:24

МАКСИМ ZIGO цветные ники , а еще плагины на кланы с огромными префиксами.

Понравилась статья? Поделить с друзьями:
  • String data ui splash lua ошибка teardown
  • Stress web 13 ошибка mysql
  • Street power football ошибка подключения к сети
  • Stop insuffisante ошибка ситроен с4
  • Stop in 2 hr without fail ошибка рено премиум