MineDojo / Voyager

An Open-Ended Embodied Agent with Large Language Models
https://voyager.minedojo.org/
MIT License
5.4k stars 493 forks source link

TimeoutError: timed out #38

Closed Cubey42 closed 1 year ago

Cubey42 commented 1 year ago

Bot has joined the game, I don't see any errors so I assume its working, but seems to be timing out.

Traceback (most recent call last): File "C:\Users\Lucas\AppData\Local\Programs\Python\Python310\lib\site-packages\urllib3\connectionpool.py", line 449, in _make_request six.raise_from(e, None) File "", line 3, in raise_from File "C:\Users\Lucas\AppData\Local\Programs\Python\Python310\lib\site-packages\urllib3\connectionpool.py", line 444, in _make_request httplib_response = conn.getresponse() File "C:\Users\Lucas\AppData\Local\Programs\Python\Python310\lib\http\client.py", line 1374, in getresponse response.begin() File "C:\Users\Lucas\AppData\Local\Programs\Python\Python310\lib\http\client.py", line 318, in begin version, status, reason = self._read_status() File "C:\Users\Lucas\AppData\Local\Programs\Python\Python310\lib\http\client.py", line 279, in _read_status line = str(self.fp.readline(_MAXLINE + 1), "iso-8859-1") File "C:\Users\Lucas\AppData\Local\Programs\Python\Python310\lib\socket.py", line 705, in readinto return self._sock.recv_into(b) TimeoutError: timed out

During handling of the above exception, another exception occurred:

Traceback (most recent call last): File "C:\Users\Lucas\AppData\Roaming\Python\Python310\site-packages\requests\adapters.py", line 489, in send resp = conn.urlopen( File "C:\Users\Lucas\AppData\Local\Programs\Python\Python310\lib\site-packages\urllib3\connectionpool.py", line 787, in urlopen retries = retries.increment( File "C:\Users\Lucas\AppData\Local\Programs\Python\Python310\lib\site-packages\urllib3\util\retry.py", line 550, in increment raise six.reraise(type(error), error, _stacktrace) File "C:\Users\Lucas\AppData\Local\Programs\Python\Python310\lib\site-packages\urllib3\packages\six.py", line 770, in reraise raise value File "C:\Users\Lucas\AppData\Local\Programs\Python\Python310\lib\site-packages\urllib3\connectionpool.py", line 703, in urlopen httplib_response = self._make_request( File "C:\Users\Lucas\AppData\Local\Programs\Python\Python310\lib\site-packages\urllib3\connectionpool.py", line 451, in _make_request self._raise_timeout(err=e, url=url, timeout_value=read_timeout) File "C:\Users\Lucas\AppData\Local\Programs\Python\Python310\lib\site-packages\urllib3\connectionpool.py", line 340, in _raise_timeout raise ReadTimeoutError( urllib3.exceptions.ReadTimeoutError: HTTPConnectionPool(host='127.0.0.1', port=3000): Read timed out. (read timeout=600)

During handling of the above exception, another exception occurred:

Traceback (most recent call last): File "H:\AI MC\Voyager\run.py", line 19, in voyager.learn() File "H:\AI MC\Voyager\voyager\voyager.py", line 303, in learn self.env.reset( File "H:\AI MC\Voyager\voyager\env\bridge.py", line 156, in reset returned_data = self.check_process() File "H:\AI MC\Voyager\voyager\env\bridge.py", line 93, in check_process res = requests.post( File "C:\Users\Lucas\AppData\Roaming\Python\Python310\site-packages\requests\api.py", line 115, in post return request("post", url, data=data, json=json, kwargs) File "C:\Users\Lucas\AppData\Roaming\Python\Python310\site-packages\requests\api.py", line 59, in request return session.request(method=method, url=url, kwargs) File "C:\Users\Lucas\AppData\Roaming\Python\Python310\site-packages\requests\sessions.py", line 587, in request resp = self.send(prep, send_kwargs) File "C:\Users\Lucas\AppData\Roaming\Python\Python310\site-packages\requests\sessions.py", line 701, in send r = adapter.send(request, kwargs) File "C:\Users\Lucas\AppData\Roaming\Python\Python310\site-packages\requests\adapters.py", line 578, in send raise ReadTimeout(e, request=request) requests.exceptions.ReadTimeout: HTTPConnectionPool(host='127.0.0.1', port=3000): Read timed out. (read timeout=600)

xieleo5 commented 1 year ago

Hi, did you use mc-port to instantiate Voyager? In this case, you need to manually resume if the GPT-4 agent writes code such as an infinity loop. The execution timeout on the python side is 10 minutes. Azure Login will automatically resume when there's a crash, but using mc-port need to manually resume. You can use this code to resume:

from voyager import Voyager

voyager = Voyager(
    azure_login=azure_login,
    openai_api_key=openai_api_key,
    ckpt_dir="YOUR_CHECKPOINT_DIR",
    resume=True,
)

I'll update README soon about how to resume later.

Cubey42 commented 1 year ago

I did not use mc-port to my knowledge, I used the code in the readme to start it. How would I start a new Voyager? (I will say it hasn't called to GPT-4 yet.

xieleo5 commented 1 year ago

Could you share your Mineflayer and Minecraft log here? They are under the logs folder.

Cubey42 commented 1 year ago

2023-05-30 21:25:28,474 - mineflayer - INFO - Stopping subprocess. 2023-05-30 21:26:25,981 - mineflayer - INFO - Starting subprocess with commands: ['node', 'H:\AI MC\Voyager\voyager\env\mineflayer/index.js', '3000'] 2023-05-30 21:26:26,765 - mineflayer - INFO - Server started on port 3000 2023-05-30 21:26:26,765 - mineflayer - INFO - Subprocess is ready. 2023-05-30 21:26:26,780 - mineflayer - INFO - { 2023-05-30 21:26:26,780 - mineflayer - INFO - port: 55952, 2023-05-30 21:26:26,780 - mineflayer - INFO - reset: 'hard', 2023-05-30 21:26:26,780 - mineflayer - INFO - inventory: {}, 2023-05-30 21:26:26,781 - mineflayer - INFO - equipment: [], 2023-05-30 21:26:26,781 - mineflayer - INFO - spread: false, 2023-05-30 21:26:26,781 - mineflayer - INFO - waitTicks: 20, 2023-05-30 21:26:26,781 - mineflayer - INFO - position: null 2023-05-30 21:26:26,781 - mineflayer - INFO - } 2023-05-30 21:26:28,981 - mineflayer - INFO - (node:29064) UnhandledPromiseRejectionWarning: Error: Cannot find module 'H:\AI MC\Voyager\voyager\env\mineflayer\node_modules\mineflayer-collectblock\lib\index.js'. Please verify that the package.json has a valid "main" entry 2023-05-30 21:26:28,981 - mineflayer - INFO - at tryPackage (internal/modules/cjs/loader.js:303:19) 2023-05-30 21:26:28,981 - mineflayer - INFO - at Function.Module._findPath (internal/modules/cjs/loader.js:516:18) 2023-05-30 21:26:28,981 - mineflayer - INFO - at Function.Module._resolveFilename (internal/modules/cjs/loader.js:867:27) 2023-05-30 21:26:28,981 - mineflayer - INFO - at Function.Module._load (internal/modules/cjs/loader.js:725:27) 2023-05-30 21:26:28,981 - mineflayer - INFO - at Module.require (internal/modules/cjs/loader.js:952:19) 2023-05-30 21:26:28,981 - mineflayer - INFO - at require (internal/modules/cjs/helpers.js:88:18) 2023-05-30 21:26:28,981 - mineflayer - INFO - at EventEmitter. (H:\AI MC\Voyager\voyager\env\mineflayer\index.js:100:30) 2023-05-30 21:26:28,981 - mineflayer - INFO - at Object.onceWrapper (events.js:421:28) 2023-05-30 21:26:28,981 - mineflayer - INFO - at EventEmitter.emit (events.js:327:22) 2023-05-30 21:26:28,981 - mineflayer - INFO - at Client. (H:\AI MC\Voyager\voyager\env\mineflayer\node_modules\mineflayer\lib\plugins\health.js:13:11) 2023-05-30 21:26:28,981 - mineflayer - INFO - (Use node --trace-warnings ... to show where the warning was created) 2023-05-30 21:26:28,981 - mineflayer - INFO - (node:29064) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). To terminate the node process on unhandled promise rejection, use the CLI flag --unhandled-rejections=strict (see https://nodejs.org/api/cli.html#cli_unhandled_rejections_mode). (rejection id: 1) 2023-05-30 21:26:28,981 - mineflayer - INFO - (node:29064) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code. 2023-05-30 21:56:08,226 - mineflayer - INFO - Stopping subprocess.

2023-05-30 21:25:29,480 - minecraft - INFO - Starting subprocess with commands: ['java', '-XX:HeapDumpPath=MojangTricksIntelDriversForPerformance_javaw.exe_minecraft.exe.heapdump', '-Dos.name=Windows 10', '-Dos.version=10.0', '-Djava.library.path=C:\Users\Lucas\AppData\Roaming\.minecraft\versions\fabric-loader-0.14.18-1.19\natives', '-Dminecraft.launcher.brand=minecraft-launcher-lib', '-Dminecraft.launcher.version=5.3', '-cp', 'C:\Users\Lucas\AppData\Roaming\.minecraft\libraries\net\fabricmc\tiny-mappings-parser\0.3.0+build.17\tiny-mappings-parser-0.3.0+build.17.jar;C:\Users\Lucas\AppData\Roaming\.minecraft\libraries\net\fabricmc\sponge-mixin\0.12.4+mixin.0.8.5\sponge-mixin-0.12.4+mixin.0.8.5.jar;C:\Users\Lucas\AppData\Roaming\.minecraft\libraries\net\fabricmc\tiny-remapper\0.8.2\tiny-remapper-0.8.2.jar;C:\Users\Lucas\AppData\Roaming\.minecraft\libraries\net\fabricmc\access-widener\2.1.0\access-widener-2.1.0.jar;C:\Users\Lucas\AppData\Roaming\.minecraft\libraries\org\ow2\asm\asm\9.4\asm-9.4.jar;C:\Users\Lucas\AppData\Roaming\.minecraft\libraries\org\ow2\asm\asm-analysis\9.4\asm-analysis-9.4.jar;C:\Users\Lucas\AppData\Roaming\.minecraft\libraries\org\ow2\asm\asm-commons\9.4\asm-commons-9.4.jar;C:\Users\Lucas\AppData\Roaming\.minecraft\libraries\org\ow2\asm\asm-tree\9.4\asm-tree-9.4.jar;C:\Users\Lucas\AppData\Roaming\.minecraft\libraries\org\ow2\asm\asm-util\9.4\asm-util-9.4.jar;C:\Users\Lucas\AppData\Roaming\.minecraft\libraries\net\fabricmc\intermediary\1.19\intermediary-1.19.jar;C:\Users\Lucas\AppData\Roaming\.minecraft\libraries\net\fabricmc\fabric-loader\0.14.18\fabric-loader-0.14.18.jar;C:\Users\Lucas\AppData\Roaming\.minecraft\libraries\com\mojang\logging\1.0.0\logging-1.0.0.jar;C:\Users\Lucas\AppData\Roaming\.minecraft\libraries\com\mojang\blocklist\1.0.10\blocklist-1.0.10.jar;C:\Users\Lucas\AppData\Roaming\.minecraft\libraries\com\mojang\patchy\2.2.10\patchy-2.2.10.jar;C:\Users\Lucas\AppData\Roaming\.minecraft\libraries\com\github\oshi\oshi-core\5.8.5\oshi-core-5.8.5.jar;C:\Users\Lucas\AppData\Roaming\.minecraft\libraries\net\java\dev\jna\jna\5.10.0\jna-5.10.0.jar;C:\Users\Lucas\AppData\Roaming\.minecraft\libraries\net\java\dev\jna\jna-platform\5.10.0\jna-platform-5.10.0.jar;C:\Users\Lucas\AppData\Roaming\.minecraft\libraries\org\slf4j\slf4j-api\1.8.0-beta4\slf4j-api-1.8.0-beta4.jar;C:\Users\Lucas\AppData\Roaming\.minecraft\libraries\org\apache\logging\log4j\log4j-slf4j18-impl\2.17.0\log4j-slf4j18-impl-2.17.0.jar;C:\Users\Lucas\AppData\Roaming\.minecraft\libraries\com\ibm\icu\icu4j\70.1\icu4j-70.1.jar;C:\Users\Lucas\AppData\Roaming\.minecraft\libraries\com\mojang\javabridge\1.2.24\javabridge-1.2.24.jar;C:\Users\Lucas\AppData\Roaming\.minecraft\libraries\net\sf\jopt-simple\jopt-simple\5.0.4\jopt-simple-5.0.4.jar;C:\Users\Lucas\AppData\Roaming\.minecraft\libraries\io\netty\netty-common\4.1.77.Final\netty-common-4.1.77.Final.jar;C:\Users\Lucas\AppData\Roaming\.minecraft\libraries\io\netty\netty-buffer\4.1.77.Final\netty-buffer-4.1.77.Final.jar;C:\Users\Lucas\AppData\Roaming\.minecraft\libraries\io\netty\netty-codec\4.1.77.Final\netty-codec-4.1.77.Final.jar;C:\Users\Lucas\AppData\Roaming\.minecraft\libraries\io\netty\netty-handler\4.1.77.Final\netty-handler-4.1.77.Final.jar;C:\Users\Lucas\AppData\Roaming\.minecraft\libraries\io\netty\netty-resolver\4.1.77.Final\netty-resolver-4.1.77.Final.jar;C:\Users\Lucas\AppData\Roaming\.minecraft\libraries\io\netty\netty-transport\4.1.77.Final\netty-transport-4.1.77.Final.jar;C:\Users\Lucas\AppData\Roaming\.minecraft\libraries\io\netty\netty-transport-native-unix-common\4.1.77.Final\netty-transport-native-unix-common-4.1.77.Final.jar;C:\Users\Lucas\AppData\Roaming\.minecraft\libraries\io\netty\netty-transport-classes-epoll\4.1.77.Final\netty-transport-classes-epoll-4.1.77.Final.jar;C:\Users\Lucas\AppData\Roaming\.minecraft\libraries\com\google\guava\failureaccess\1.0.1\failureaccess-1.0.1.jar;C:\Users\Lucas\AppData\Roaming\.minecraft\libraries\com\google\guava\guava\31.0.1-jre\guava-31.0.1-jre.jar;C:\Users\Lucas\AppData\Roaming\.minecraft\libraries\org\apache\commons\commons-lang3\3.12.0\commons-lang3-3.12.0.jar;C:\Users\Lucas\AppData\Roaming\.minecraft\libraries\commons-io\commons-io\2.11.0\commons-io-2.11.0.jar;C:\Users\Lucas\AppData\Roaming\.minecraft\libraries\commons-codec\commons-codec\1.15\commons-codec-1.15.jar;C:\Users\Lucas\AppData\Roaming\.minecraft\libraries\com\mojang\brigadier\1.0.18\brigadier-1.0.18.jar;C:\Users\Lucas\AppData\Roaming\.minecraft\libraries\com\mojang\datafixerupper\5.0.28\datafixerupper-5.0.28.jar;C:\Users\Lucas\AppData\Roaming\.minecraft\libraries\com\google\code\gson\gson\2.8.9\gson-2.8.9.jar;C:\Users\Lucas\AppData\Roaming\.minecraft\libraries\com\mojang\authlib\3.5.41\authlib-3.5.41.jar;C:\Users\Lucas\AppData\Roaming\.minecraft\libraries\org\apache\commons\commons-compress\1.21\commons-compress-1.21.jar;C:\Users\Lucas\AppData\Roaming\.minecraft\libraries\org\apache\httpcomponents\httpclient\4.5.13\httpclient-4.5.13.jar;C:\Users\Lucas\AppData\Roaming\.minecraft\libraries\commons-logging\commons-logging\1.2\commons-logging-1.2.jar;C:\Users\Lucas\AppData\Roaming\.minecraft\libraries\org\apache\httpcomponents\httpcore\4.4.14\httpcore-4.4.14.jar;C:\Users\Lucas\AppData\Roaming\.minecraft\libraries\it\unimi\dsi\fastutil\8.5.6\fastutil-8.5.6.jar;C:\Users\Lucas\AppData\Roaming\.minecraft\libraries\org\apache\logging\log4j\log4j-api\2.17.0\log4j-api-2.17.0.jar;C:\Users\Lucas\AppData\Roaming\.minecraft\libraries\org\apache\logging\log4j\log4j-core\2.17.0\log4j-core-2.17.0.jar;C:\Users\Lucas\AppData\Roaming\.minecraft\libraries\org\lwjgl\lwjgl\3.3.1\lwjgl-3.3.1.jar;C:\Users\Lucas\AppData\Roaming\.minecraft\libraries\org\lwjgl\lwjgl\3.3.1\lwjgl-3.3.1-natives-windows.jar;C:\Users\Lucas\AppData\Roaming\.minecraft\libraries\org\lwjgl\lwjgl\3.3.1\lwjgl-3.3.1-natives-windows-x86.jar;C:\Users\Lucas\AppData\Roaming\.minecraft\libraries\org\lwjgl\lwjgl-jemalloc\3.3.1\lwjgl-jemalloc-3.3.1.jar;C:\Users\Lucas\AppData\Roaming\.minecraft\libraries\org\lwjgl\lwjgl-jemalloc\3.3.1\lwjgl-jemalloc-3.3.1-natives-windows.jar;C:\Users\Lucas\AppData\Roaming\.minecraft\libraries\org\lwjgl\lwjgl-jemalloc\3.3.1\lwjgl-jemalloc-3.3.1-natives-windows-x86.jar;C:\Users\Lucas\AppData\Roaming\.minecraft\libraries\org\lwjgl\lwjgl-openal\3.3.1\lwjgl-openal-3.3.1.jar;C:\Users\Lucas\AppData\Roaming\.minecraft\libraries\org\lwjgl\lwjgl-openal\3.3.1\lwjgl-openal-3.3.1-natives-windows.jar;C:\Users\Lucas\AppData\Roaming\.minecraft\libraries\org\lwjgl\lwjgl-openal\3.3.1\lwjgl-openal-3.3.1-natives-windows-x86.jar;C:\Users\Lucas\AppData\Roaming\.minecraft\libraries\org\lwjgl\lwjgl-opengl\3.3.1\lwjgl-opengl-3.3.1.jar;C:\Users\Lucas\AppData\Roaming\.minecraft\libraries\org\lwjgl\lwjgl-opengl\3.3.1\lwjgl-opengl-3.3.1-natives-windows.jar;C:\Users\Lucas\AppData\Roaming\.minecraft\libraries\org\lwjgl\lwjgl-opengl\3.3.1\lwjgl-opengl-3.3.1-natives-windows-x86.jar;C:\Users\Lucas\AppData\Roaming\.minecraft\libraries\org\lwjgl\lwjgl-glfw\3.3.1\lwjgl-glfw-3.3.1.jar;C:\Users\Lucas\AppData\Roaming\.minecraft\libraries\org\lwjgl\lwjgl-glfw\3.3.1\lwjgl-glfw-3.3.1-natives-windows.jar;C:\Users\Lucas\AppData\Roaming\.minecraft\libraries\org\lwjgl\lwjgl-glfw\3.3.1\lwjgl-glfw-3.3.1-natives-windows-x86.jar;C:\Users\Lucas\AppData\Roaming\.minecraft\libraries\org\lwjgl\lwjgl-stb\3.3.1\lwjgl-stb-3.3.1.jar;C:\Users\Lucas\AppData\Roaming\.minecraft\libraries\org\lwjgl\lwjgl-stb\3.3.1\lwjgl-stb-3.3.1-natives-windows.jar;C:\Users\Lucas\AppData\Roaming\.minecraft\libraries\org\lwjgl\lwjgl-stb\3.3.1\lwjgl-stb-3.3.1-natives-windows-x86.jar;C:\Users\Lucas\AppData\Roaming\.minecraft\libraries\org\lwjgl\lwjgl-tinyfd\3.3.1\lwjgl-tinyfd-3.3.1.jar;C:\Users\Lucas\AppData\Roaming\.minecraft\libraries\org\lwjgl\lwjgl-tinyfd\3.3.1\lwjgl-tinyfd-3.3.1-natives-windows.jar;C:\Users\Lucas\AppData\Roaming\.minecraft\libraries\org\lwjgl\lwjgl-tinyfd\3.3.1\lwjgl-tinyfd-3.3.1-natives-windows-x86.jar;C:\Users\Lucas\AppData\Roaming\.minecraft\libraries\com\mojang\text2speech\1.16.7\text2speech-1.16.7.jar;C:\Users\Lucas\AppData\Roaming\.minecraft\libraries\org\lwjgl\lwjgl-glfw\3.3.1\lwjgl-glfw-3.3.1-natives-windows-arm64.jar;C:\Users\Lucas\AppData\Roaming\.minecraft\libraries\org\lwjgl\lwjgl-jemalloc\3.3.1\lwjgl-jemalloc-3.3.1-natives-windows-arm64.jar;C:\Users\Lucas\AppData\Roaming\.minecraft\libraries\org\lwjgl\lwjgl-openal\3.3.1\lwjgl-openal-3.3.1-natives-windows-arm64.jar;C:\Users\Lucas\AppData\Roaming\.minecraft\libraries\org\lwjgl\lwjgl-opengl\3.3.1\lwjgl-opengl-3.3.1-natives-windows-arm64.jar;C:\Users\Lucas\AppData\Roaming\.minecraft\libraries\org\lwjgl\lwjgl-stb\3.3.1\lwjgl-stb-3.3.1-natives-windows-arm64.jar;C:\Users\Lucas\AppData\Roaming\.minecraft\libraries\org\lwjgl\lwjgl-tinyfd\3.3.1\lwjgl-tinyfd-3.3.1-natives-windows-arm64.jar;C:\Users\Lucas\AppData\Roaming\.minecraft\libraries\org\lwjgl\lwjgl\3.3.1\lwjgl-3.3.1-natives-windows-arm64.jar;C:\Users\Lucas\AppData\Roaming\.minecraft\versions\fabric-loader-0.14.18-1.19\fabric-loader-0.14.18-1.19.jar', '-DFabricMcEmu= net.minecraft.client.main.Main ', 'net.fabricmc.loader.impl.launch.knot.KnotClient', '--username', 'CubeyAYAYA', '--version', 'fabric-loader-0.14.18-1.19', '--gameDir', 'C:\Users\Lucas\AppData\Roaming\.minecraft', '--assetsDir', 'C:\Users\Lucas\AppData\Roaming\.minecraft\assets', '--assetIndex', '1.19', '--uuid', '144ef92c6f7a49ea8f69257f30da81b3', '--accessToken', 'eyJraWQiOiJhYzg0YSIsImFsZyI6IkhTMjU2In0.eyJ4dWlkIjoiMjUzMzI3NDc5MjcxMjA4OCIsImFnZyI6IkFkdWx0Iiwic3ViIjoiYTNjMjFlZDctOTY0YS00YTU5LWI4MDMtMjJmYzNhOGZhMTYwIiwiYXV0aCI6IlhCT1giLCJucyI6ImRlZmF1bHQiLCJyb2xlcyI6W10sImlzcyI6ImF1dGhlbnRpY2F0aW9uIiwiZmxhZ3MiOlsidHdvZmFjdG9yYXV0aCIsIm9yZGVyc18yMDIyIl0sInBsYXRmb3JtIjoiVU5LTk9XTiIsInl1aWQiOiJlZTg3ZGY2ZDY2NzQ0NDVjOWQwMmNhMTQ5NmRkODI4YSIsIm5iZiI6MTY4NTM4OTEyMCwiZXhwIjoxNjg1NDc1NTIwLCJpYXQiOjE2ODUzODkxMjB9.ng0E8uKoQOkUjEeSqAVixZv8Dh7UycNT2Un-0ZrxNpY', '--clientId', '${clientid}', '--xuid', '${auth_xuid}', '--userType', 'mojang', '--versionType', 'release'] 2023-05-30 21:25:30,705 - minecraft - INFO - [21:25:30] [main/INFO]: Loading Minecraft 1.19 with Fabric Loader 0.14.18 2023-05-30 21:25:30,784 - minecraft - INFO - [21:25:30] [main/INFO]: Loading 57 mods: 2023-05-30 21:25:30,784 - minecraft - INFO - - completeconfig 2.0.0 2023-05-30 21:25:30,784 - minecraft - INFO - |-- coat 1.0.0-beta.17+mc22w17a 2023-05-30 21:25:30,784 - minecraft - INFO - |-- completeconfig-base 2.0.0 2023-05-30 21:25:30,784 - minecraft - INFO - |-- completeconfig-gui-cloth 2.0.0 2023-05-30 21:25:30,784 - minecraft - INFO - -- completeconfig-gui-coat 2.0.0 2023-05-30 21:25:30,784 - minecraft - INFO - - fabric 0.58.0+1.19 2023-05-30 21:25:30,784 - minecraft - INFO - |-- fabric-api-base 0.4.9+e62f51a3a9 2023-05-30 21:25:30,784 - minecraft - INFO - |-- fabric-api-lookup-api-v1 1.6.7+9ff28f40a9 2023-05-30 21:25:30,784 - minecraft - INFO - |-- fabric-biome-api-v1 9.0.14+b2a4a624a9 2023-05-30 21:25:30,784 - minecraft - INFO - |-- fabric-blockrenderlayer-v1 1.1.18+9ff28f40a9 2023-05-30 21:25:30,784 - minecraft - INFO - |-- fabric-command-api-v1 1.2.6+f71b366fa9 2023-05-30 21:25:30,784 - minecraft - INFO - |-- fabric-command-api-v2 2.1.2+0d55f585a9 2023-05-30 21:25:30,784 - minecraft - INFO - |-- fabric-commands-v0 0.2.23+df3654b3a9 2023-05-30 21:25:30,784 - minecraft - INFO - |-- fabric-containers-v0 0.1.28+df3654b3a9 2023-05-30 21:25:30,784 - minecraft - INFO - |-- fabric-content-registries-v0 3.2.1+07df213ea9 2023-05-30 21:25:30,784 - minecraft - INFO - |-- fabric-convention-tags-v1 1.0.8+37622d24a9 2023-05-30 21:25:30,784 - minecraft - INFO - |-- fabric-crash-report-info-v1 0.2.3+bd0a0d4aa9 2023-05-30 21:25:30,784 - minecraft - INFO - |-- fabric-data-generation-api-v1 5.1.2+a680b9b4a9 2023-05-30 21:25:30,784 - minecraft - INFO - |-- fabric-dimensions-v1 2.1.28+a6d2f785a9 2023-05-30 21:25:30,784 - minecraft - INFO - |-- fabric-entity-events-v1 1.4.16+9ff28f40a9 2023-05-30 21:25:30,784 - minecraft - INFO - |-- fabric-events-interaction-v0 0.4.26+9ff28f40a9 2023-05-30 21:25:30,784 - minecraft - INFO - |-- fabric-events-lifecycle-v0 0.2.26+df3654b3a9 2023-05-30 21:25:30,784 - minecraft - INFO - |-- fabric-game-rule-api-v1 1.0.19+18990361a9 2023-05-30 21:25:30,784 - minecraft - INFO - |-- fabric-item-api-v1 1.5.5+35a03c43a9 2023-05-30 21:25:30,784 - minecraft - INFO - |-- fabric-item-groups-v0 0.3.26+9ff28f40a9 2023-05-30 21:25:30,784 - minecraft - INFO - |-- fabric-key-binding-api-v1 1.0.18+9ff28f40a9 2023-05-30 21:25:30,784 - minecraft - INFO - |-- fabric-keybindings-v0 0.2.16+df3654b3a9 2023-05-30 21:25:30,784 - minecraft - INFO - |-- fabric-lifecycle-events-v1 2.1.0+33fbc738a9 2023-05-30 21:25:30,784 - minecraft - INFO - |-- fabric-loot-api-v2 1.1.1+03a4e568a9 2023-05-30 21:25:30,784 - minecraft - INFO - |-- fabric-loot-tables-v1 1.1.4+9e7660c6a9 2023-05-30 21:25:30,784 - minecraft - INFO - |-- fabric-message-api-v1 1.0.1+513f4a59a9 2023-05-30 21:25:30,785 - minecraft - INFO - |-- fabric-mining-level-api-v1 2.1.11+33fbc738a9 2023-05-30 21:25:30,785 - minecraft - INFO - |-- fabric-models-v0 0.3.15+9ff28f40a9 2023-05-30 21:25:30,785 - minecraft - INFO - |-- fabric-networking-api-v1 1.1.0+442de8b8a9 2023-05-30 21:25:30,785 - minecraft - INFO - |-- fabric-networking-v0 0.3.15+df3654b3a9 2023-05-30 21:25:30,785 - minecraft - INFO - |-- fabric-object-builder-api-v1 4.0.8+9ff28f40a9 2023-05-30 21:25:30,785 - minecraft - INFO - |-- fabric-particles-v1 1.0.8+dc39553aa9 2023-05-30 21:25:30,785 - minecraft - INFO - |-- fabric-registry-sync-v0 0.9.18+23c4cfefa9 2023-05-30 21:25:30,785 - minecraft - INFO - |-- fabric-renderer-api-v1 1.0.8+9ff28f40a9 2023-05-30 21:25:30,785 - minecraft - INFO - |-- fabric-renderer-indigo 0.6.10+5187d39fa9 2023-05-30 21:25:30,785 - minecraft - INFO - |-- fabric-renderer-registries-v1 3.2.18+df3654b3a9 2023-05-30 21:25:30,785 - minecraft - INFO - |-- fabric-rendering-data-attachment-v1 0.3.12+9ff28f40a9 2023-05-30 21:25:30,785 - minecraft - INFO - |-- fabric-rendering-fluids-v1 3.0.5+9ff28f40a9 2023-05-30 21:25:30,785 - minecraft - INFO - |-- fabric-rendering-v0 1.1.20+df3654b3a9 2023-05-30 21:25:30,785 - minecraft - INFO - |-- fabric-rendering-v1 1.10.14+9ff28f40a9 2023-05-30 21:25:30,785 - minecraft - INFO - |-- fabric-resource-conditions-api-v1 2.0.9+e62f51a3a9 2023-05-30 21:25:30,785 - minecraft - INFO - |-- fabric-resource-loader-v0 0.5.6+5f1a85e0a9 2023-05-30 21:25:30,785 - minecraft - INFO - |-- fabric-screen-api-v1 1.0.24+f05effafa9 2023-05-30 21:25:30,785 - minecraft - INFO - |-- fabric-screen-handler-api-v1 1.2.7+9ff28f40a9 2023-05-30 21:25:30,785 - minecraft - INFO - |-- fabric-textures-v0 1.0.18+9ff28f40a9 2023-05-30 21:25:30,785 - minecraft - INFO - |-- fabric-transfer-api-v1 2.0.9+e62f51a3a9 2023-05-30 21:25:30,785 - minecraft - INFO - -- fabric-transitive-access-wideners-v1 1.1.1+9e7660c6a9 2023-05-30 21:25:30,785 - minecraft - INFO - - fabricloader 0.14.18 2023-05-30 21:25:30,785 - minecraft - INFO - - java 20 2023-05-30 21:25:30,785 - minecraft - INFO - - minecraft 1.19 2023-05-30 21:25:30,785 - minecraft - INFO - - modmenu 4.0.4 2023-05-30 21:25:30,785 - minecraft - INFO - - serverpause 1.1.0 2023-05-30 21:25:30,843 - minecraft - INFO - [21:25:30] [main/INFO]: SpongePowered MIXIN Subsystem Version=0.8.5 Source=file:/C:/Users/Lucas/AppData/Roaming/.minecraft/libraries/net/fabricmc/sponge-mixin/0.12.4+mixin.0.8.5/sponge-mixin-0.12.4+mixin.0.8.5.jar Service=Knot/Fabric Env=CLIENT 2023-05-30 21:25:30,911 - minecraft - INFO - [21:25:30] [main/INFO]: Compatibility level set to JAVA_17 2023-05-30 21:25:33,443 - minecraft - INFO - [21:25:33] [main/INFO]: Building optimized datafixer 2023-05-30 21:25:35,501 - minecraft - INFO - [21:25:35] [Render thread/INFO]: [STDERR]: [LWJGL] [ThreadLocalUtil] Unsupported JNI version detected, this may result in a crash. Please inform LWJGL developers. 2023-05-30 21:25:35,850 - minecraft - INFO - [21:25:35] [Render thread/INFO]: Environment: authHost='https://authserver.mojang.com', accountsHost='https://api.mojang.com', sessionHost='https://sessionserver.mojang.com', servicesHost='https://api.minecraftservices.com', name='PROD' 2023-05-30 21:25:36,419 - minecraft - INFO - [21:25:36] [Render thread/ERROR]: Failed to verify authentication 2023-05-30 21:25:36,419 - minecraft - INFO - com.mojang.authlib.exceptions.InvalidCredentialsException: Status: 401 2023-05-30 21:25:36,420 - minecraft - INFO - at com.mojang.authlib.exceptions.MinecraftClientHttpException.toAuthenticationException(MinecraftClientHttpException.java:56) ~[authlib-3.5.41.jar:?] 2023-05-30 21:25:36,420 - minecraft - INFO - at com.mojang.authlib.yggdrasil.YggdrasilUserApiService.fetchProperties(YggdrasilUserApiService.java:140) ~[authlib-3.5.41.jar:?] 2023-05-30 21:25:36,420 - minecraft - INFO - at com.mojang.authlib.yggdrasil.YggdrasilUserApiService.(YggdrasilUserApiService.java:47) ~[authlib-3.5.41.jar:?] 2023-05-30 21:25:36,420 - minecraft - INFO - at com.mojang.authlib.yggdrasil.YggdrasilAuthenticationService.createUserApiService(YggdrasilAuthenticationService.java:158) ~[authlib-3.5.41.jar:?] 2023-05-30 21:25:36,420 - minecraft - INFO - at net.minecraft.class_310.method_31382(class_310.java:677) [client-intermediary.jar:?] 2023-05-30 21:25:36,420 - minecraft - INFO - at net.minecraft.class_310.(class_310.java:415) [client-intermediary.jar:?] 2023-05-30 21:25:36,420 - minecraft - INFO - at net.minecraft.client.main.Main.main(Main.java:198) [client-intermediary.jar:?] 2023-05-30 21:25:36,420 - minecraft - INFO - at net.fabricmc.loader.impl.game.minecraft.MinecraftGameProvider.launch(MinecraftGameProvider.java:462) [fabric-loader-0.14.18.jar:?] 2023-05-30 21:25:36,420 - minecraft - INFO - at net.fabricmc.loader.impl.launch.knot.Knot.launch(Knot.java:74) [fabric-loader-0.14.18.jar:?] 2023-05-30 21:25:36,420 - minecraft - INFO - at net.fabricmc.loader.impl.launch.knot.KnotClient.main(KnotClient.java:23) [fabric-loader-0.14.18.jar:?] 2023-05-30 21:25:36,420 - minecraft - INFO - Caused by: com.mojang.authlib.exceptions.MinecraftClientHttpException: Status: 401 2023-05-30 21:25:36,420 - minecraft - INFO - at com.mojang.authlib.minecraft.client.MinecraftClient.readInputStream(MinecraftClient.java:85) ~[authlib-3.5.41.jar:?] 2023-05-30 21:25:36,420 - minecraft - INFO - at com.mojang.authlib.minecraft.client.MinecraftClient.get(MinecraftClient.java:48) ~[authlib-3.5.41.jar:?] 2023-05-30 21:25:36,420 - minecraft - INFO - at com.mojang.authlib.yggdrasil.YggdrasilUserApiService.fetchProperties(YggdrasilUserApiService.java:121) ~[authlib-3.5.41.jar:?] 2023-05-30 21:25:36,420 - minecraft - INFO - ... 8 more 2023-05-30 21:25:36,422 - minecraft - INFO - [21:25:36] [Render thread/INFO]: Setting user: CubeyAYAYA 2023-05-30 21:25:36,991 - minecraft - INFO - [21:25:36] [Render thread/INFO]: [Indigo] Registering Indigo renderer! 2023-05-30 21:25:37,267 - minecraft - INFO - [21:25:37] [Render thread/INFO]: Backend library: LWJGL version 3.3.1 SNAPSHOT 2023-05-30 21:25:39,061 - minecraft - INFO - [21:25:39] [Render thread/INFO]: Reloading ResourceManager: Default, Fabric Mods (Coat, completeconfig-base, completeconfig-gui-coat, Fabric API, Fabric API Base, Fabric API Lookup API (v1), Fabric Biome API (v1), Fabric BlockRenderLayer Registration (v1), Fabric Command API (v1), Fabric Command API (v2), Fabric Commands (v0), Fabric Containers (v0), Fabric Content Registries (v0), Fabric Convention Tags, Fabric Crash Report Info (v1), Fabric Data Generation API (v1), Fabric Dimensions API (v1), Fabric Entity Events (v1), Fabric Events Interaction (v0), Fabric Events Lifecycle (v0), Fabric Game Rule API (v1), Fabric Item API (v1), Fabric Item Groups (v0), Fabric Key Binding API (v1), Fabric Key Bindings (v0), Fabric Lifecycle Events (v1), Fabric Loot API (v2), Fabric Loot Tables (v1), Fabric Message API (v1), Fabric Mining Level API (v1), Fabric Models (v0), Fabric Networking API (v1), Fabric Networking (v0), Fabric Object Builder API (v1), Fabric Particles (v1), Fabric Registry Sync (v0), Fabric Renderer API (v1), Fabric Renderer - Indigo, Fabric Renderer Registries (v1), Fabric Rendering Data Attachment (v1), Fabric Rendering Fluids (v1), Fabric Rendering (v0), Fabric Rendering (v1), Fabric Resource Conditions API (v1), Fabric Resource Loader (v0), Fabric Screen API (v1), Fabric Screen Handler API (v1), Fabric Textures (v0), Fabric Transfer API (v1), Fabric Transitive Access Wideners (v1), Fabric Loader, Mod Menu, Multiplayer Server Pause) 2023-05-30 21:25:39,105 - minecraft - INFO - [21:25:39] [Worker-Main-24/ERROR]: Failed to retrieve profile key pair 2023-05-30 21:25:39,106 - minecraft - INFO - java.io.IOException: Could not retrieve profile key pair 2023-05-30 21:25:39,106 - minecraft - INFO - at net.minecraft.class_7434.method_43605(class_7434.java:112) ~[client-intermediary.jar:?] 2023-05-30 21:25:39,106 - minecraft - INFO - at net.minecraft.class_7434.method_44291(class_7434.java:56) ~[client-intermediary.jar:?] 2023-05-30 21:25:39,106 - minecraft - INFO - at java.util.concurrent.CompletableFuture$AsyncSupply.run(CompletableFuture.java:1768) [?:?] 2023-05-30 21:25:39,106 - minecraft - INFO - at java.util.concurrent.CompletableFuture$AsyncSupply.exec(CompletableFuture.java:1760) [?:?] 2023-05-30 21:25:39,106 - minecraft - INFO - at java.util.concurrent.ForkJoinTask.doExec(ForkJoinTask.java:387) [?:?] 2023-05-30 21:25:39,106 - minecraft - INFO - at java.util.concurrent.ForkJoinPool$WorkQueue.topLevelExec(ForkJoinPool.java:1312) [?:?] 2023-05-30 21:25:39,106 - minecraft - INFO - at java.util.concurrent.ForkJoinPool.scan(ForkJoinPool.java:1843) [?:?] 2023-05-30 21:25:39,106 - minecraft - INFO - at java.util.concurrent.ForkJoinPool.runWorker(ForkJoinPool.java:1808) [?:?] 2023-05-30 21:25:39,106 - minecraft - INFO - at java.util.concurrent.ForkJoinWorkerThread.run(ForkJoinWorkerThread.java:188) [?:?] 2023-05-30 21:25:39,561 - minecraft - INFO - [21:25:39] [Realms Notification Availability checker #1/INFO]: Could not authorize you against Realms server: Invalid session id 2023-05-30 21:25:40,468 - minecraft - INFO - [21:25:40] [Render thread/WARN]: Missing sound for event: minecraft:item.goat_horn.play 2023-05-30 21:25:40,468 - minecraft - INFO - [21:25:40] [Render thread/WARN]: Missing sound for event: minecraft:entity.goat.screaming.horn_break 2023-05-30 21:25:40,817 - minecraft - INFO - [21:25:40] [Render thread/INFO]: OpenAL initialized on device OpenAL Soft on VoiceMeeter Aux Input (VB-Audio VoiceMeeter AUX VAIO) 2023-05-30 21:25:40,818 - minecraft - INFO - [21:25:40] [Render thread/INFO]: Sound engine started 2023-05-30 21:25:40,878 - minecraft - INFO - [21:25:40] [Worker-Bootstrap-15/INFO]: 4256 Datafixer optimizations took 7427 milliseconds 2023-05-30 21:25:40,912 - minecraft - INFO - [21:25:40] [Render thread/INFO]: Created: 1024x1024x4 minecraft:textures/atlas/blocks.png-atlas 2023-05-30 21:25:40,913 - minecraft - INFO - [21:25:40] [Render thread/INFO]: Created: 256x128x4 minecraft:textures/atlas/signs.png-atlas 2023-05-30 21:25:40,915 - minecraft - INFO - [21:25:40] [Render thread/INFO]: Created: 1024x512x4 minecraft:textures/atlas/banner_patterns.png-atlas 2023-05-30 21:25:40,915 - minecraft - INFO - [21:25:40] [Render thread/INFO]: Created: 1024x512x4 minecraft:textures/atlas/shield_patterns.png-atlas 2023-05-30 21:25:40,916 - minecraft - INFO - [21:25:40] [Render thread/INFO]: Created: 256x256x4 minecraft:textures/atlas/chest.png-atlas 2023-05-30 21:25:40,917 - minecraft - INFO - [21:25:40] [Render thread/INFO]: Created: 512x256x4 minecraft:textures/atlas/beds.png-atlas 2023-05-30 21:25:40,917 - minecraft - INFO - [21:25:40] [Render thread/INFO]: Created: 512x256x4 minecraft:textures/atlas/shulker_boxes.png-atlas 2023-05-30 21:25:41,212 - minecraft - INFO - [21:25:41] [Render thread/WARN]: Shader rendertype_entity_translucent_emissive could not find sampler named Sampler2 in the specified shader program. 2023-05-30 21:25:41,235 - minecraft - INFO - [21:25:41] [Render thread/INFO]: Created: 512x256x0 minecraft:textures/atlas/particles.png-atlas 2023-05-30 21:25:41,236 - minecraft - INFO - [21:25:41] [Render thread/INFO]: Created: 256x256x0 minecraft:textures/atlas/paintings.png-atlas 2023-05-30 21:25:41,236 - minecraft - INFO - [21:25:41] [Render thread/INFO]: Created: 256x128x0 minecraft:textures/atlas/mob_effects.png-atlas 2023-05-30 21:25:45,215 - minecraft - INFO - [21:25:45] [Server Pinger #0/ERROR]: Can't ping mooncordminecraft.spmc.co: Unknown host 2023-05-30 21:25:50,603 - minecraft - INFO - [21:25:50] [Render thread/INFO]: Loaded 7 recipes 2023-05-30 21:25:50,721 - minecraft - INFO - [21:25:50] [Render thread/INFO]: Loaded 1179 advancements 2023-05-30 21:25:57,978 - minecraft - INFO - [21:25:57] [Render thread/INFO]: Loaded 7 recipes 2023-05-30 21:25:57,999 - minecraft - INFO - [21:25:57] [Render thread/INFO]: Loaded 1179 advancements 2023-05-30 21:25:58,206 - minecraft - INFO - [21:25:58] [Render thread/INFO]: Applied 0 biome modifications to 0 of 63 new biomes in 1.280 ms 2023-05-30 21:25:58,209 - minecraft - INFO - [21:25:58] [Server thread/INFO]: Starting integrated minecraft server version 1.19 2023-05-30 21:25:58,210 - minecraft - INFO - [21:25:58] [Server thread/INFO]: Generating keypair 2023-05-30 21:26:04,341 - minecraft - INFO - [21:26:04] [Server thread/INFO]: Preparing start region for dimension minecraft:overworld 2023-05-30 21:26:04,532 - minecraft - INFO - [21:26:04] [Render thread/INFO]: Preparing spawn area: 0% 2023-05-30 21:26:04,865 - minecraft - INFO - [21:26:04] [Render thread/INFO]: Preparing spawn area: 0% 2023-05-30 21:26:05,358 - minecraft - INFO - [21:26:05] [Render thread/INFO]: Preparing spawn area: 3% 2023-05-30 21:26:05,865 - minecraft - INFO - [21:26:05] [Render thread/INFO]: Preparing spawn area: 5% 2023-05-30 21:26:06,369 - minecraft - INFO - [21:26:06] [Render thread/INFO]: Preparing spawn area: 9% 2023-05-30 21:26:06,856 - minecraft - INFO - [21:26:06] [Render thread/INFO]: Preparing spawn area: 15% 2023-05-30 21:26:07,364 - minecraft - INFO - [21:26:07] [Render thread/INFO]: Preparing spawn area: 20% 2023-05-30 21:26:07,869 - minecraft - INFO - [21:26:07] [Render thread/INFO]: Preparing spawn area: 27% 2023-05-30 21:26:08,358 - minecraft - INFO - [21:26:08] [Render thread/INFO]: Preparing spawn area: 34% 2023-05-30 21:26:08,864 - minecraft - INFO - [21:26:08] [Render thread/INFO]: Preparing spawn area: 39% 2023-05-30 21:26:09,371 - minecraft - INFO - [21:26:09] [Render thread/INFO]: Preparing spawn area: 47% 2023-05-30 21:26:09,871 - minecraft - INFO - [21:26:09] [Render thread/INFO]: Preparing spawn area: 54% 2023-05-30 21:26:10,365 - minecraft - INFO - [21:26:10] [Render thread/INFO]: Preparing spawn area: 57% 2023-05-30 21:26:10,866 - minecraft - INFO - [21:26:10] [Render thread/INFO]: Preparing spawn area: 66% 2023-05-30 21:26:11,358 - minecraft - INFO - [21:26:11] [Render thread/INFO]: Preparing spawn area: 70% 2023-05-30 21:26:11,861 - minecraft - INFO - [21:26:11] [Render thread/INFO]: Preparing spawn area: 79% 2023-05-30 21:26:12,661 - minecraft - INFO - [21:26:12] [Render thread/INFO]: Preparing spawn area: 84% 2023-05-30 21:26:12,861 - minecraft - INFO - [21:26:12] [Render thread/INFO]: Preparing spawn area: 84% 2023-05-30 21:26:13,355 - minecraft - INFO - [21:26:13] [Render thread/INFO]: Preparing spawn area: 90% 2023-05-30 21:26:13,748 - minecraft - INFO - [21:26:13] [Render thread/INFO]: Time elapsed: 9395 ms 2023-05-30 21:26:13,782 - minecraft - INFO - [21:26:13] [Server thread/INFO]: Changing view distance to 29, from 10 2023-05-30 21:26:13,783 - minecraft - INFO - [21:26:13] [Server thread/INFO]: Changing simulation distance to 12, from 0 2023-05-30 21:26:14,245 - minecraft - INFO - [21:26:14] [Server thread/INFO]: CubeyAYAYA[local:E:2607d22c] logged in with entity id 158 at (-53.5, 107.0, -68.5) 2023-05-30 21:26:14,287 - minecraft - INFO - [21:26:14] [Server thread/INFO]: CubeyAYAYA joined the game 2023-05-30 21:26:14,869 - minecraft - INFO - [21:26:14] [Render thread/INFO]: Loaded 0 advancements 2023-05-30 21:26:19,045 - minecraft - INFO - [21:26:19] [Server thread/INFO]: Saving and pausing game... 2023-05-30 21:26:19,053 - minecraft - INFO - [21:26:19] [Server thread/INFO]: Saving chunks for level 'ServerLevel[New World]'/minecraft:overworld 2023-05-30 21:26:19,063 - minecraft - INFO - [21:26:19] [Server thread/INFO]: Saving chunks for level 'ServerLevel[New World]'/minecraft:the_end 2023-05-30 21:26:19,064 - minecraft - INFO - [21:26:19] [Server thread/INFO]: Saving chunks for level 'ServerLevel[New World]'/minecraft:the_nether 2023-05-30 21:26:25,972 - minecraft - INFO - [21:26:25] [Render thread/INFO]: Using default channel type 2023-05-30 21:26:25,979 - minecraft - INFO - [21:26:25] [Render thread/INFO]: Started serving on 55952 2023-05-30 21:26:25,979 - minecraft - INFO - Subprocess is ready. 2023-05-30 21:26:25,985 - minecraft - INFO - [21:26:25] [Render thread/INFO]: [CHAT] Local game hosted on port 55952 2023-05-30 21:26:27,313 - minecraft - INFO - [21:26:27] [User Authenticator #1/WARN]: Failed to verify username but will let them in anyway! 2023-05-30 21:26:27,407 - minecraft - INFO - [21:26:27] [Server thread/INFO]: bot[/127.0.0.1:55963] logged in with entity id 640 at (-66.5, 110.0, -57.5) 2023-05-30 21:26:27,411 - minecraft - INFO - [21:26:27] [Server thread/INFO]: bot joined the game 2023-05-30 21:26:27,420 - minecraft - INFO - [21:26:27] [Render thread/INFO]: [CHAT] bot joined the game 2023-05-30 21:26:28,979 - minecraft - INFO - [21:26:28] [Server thread/INFO]: bot fell out of the world 2023-05-30 21:26:28,980 - minecraft - INFO - [21:26:28] [Render thread/INFO]: [CHAT] bot fell out of the world 2023-05-30 21:26:28,980 - minecraft - INFO - [21:26:28] [Server thread/INFO]: [bot: Killed bot] 2023-05-30 21:26:28,981 - minecraft - INFO - [21:26:28] [Render thread/INFO]: [CHAT] [bot: Killed bot] 2023-05-30 21:26:38,444 - minecraft - INFO - [21:26:38] [Server thread/INFO]: mine wood 2023-05-30 21:26:38,444 - minecraft - INFO - [21:26:38] [Render thread/WARN]: Received chat packet without valid signature from CubeyAYAYA 2023-05-30 21:26:38,444 - minecraft - INFO - [21:26:38] [Render thread/INFO]: [CHAT] mine wood 2023-05-30 21:56:05,159 - minecraft - INFO - [21:56:05] [Render thread/INFO]: Stopping! 2023-05-30 21:56:05,202 - minecraft - INFO - [21:56:05] [Server thread/INFO]: CubeyAYAYA lost connection: Disconnected 2023-05-30 21:56:05,202 - minecraft - INFO - [21:56:05] [Server thread/INFO]: CubeyAYAYA left the game 2023-05-30 21:56:05,203 - minecraft - INFO - [21:56:05] [Server thread/INFO]: Stopping singleplayer server as player logged out 2023-05-30 21:56:05,257 - minecraft - INFO - [21:56:05] [Server thread/INFO]: Stopping server 2023-05-30 21:56:05,258 - minecraft - INFO - [21:56:05] [Server thread/INFO]: Saving players 2023-05-30 21:56:05,258 - minecraft - INFO - [21:56:05] [Server thread/INFO]: Saving worlds 2023-05-30 21:56:07,528 - minecraft - INFO - [21:56:07] [Server thread/INFO]: Saving chunks for level 'ServerLevel[New World]'/minecraft:overworld 2023-05-30 21:56:07,603 - minecraft - INFO - [21:56:07] [Server thread/INFO]: Saving chunks for level 'ServerLevel[New World]'/minecraft:the_end 2023-05-30 21:56:07,604 - minecraft - INFO - [21:56:07] [Server thread/INFO]: Saving chunks for level 'ServerLevel[New World]'/minecraft:the_nether 2023-05-30 21:56:07,607 - minecraft - INFO - [21:56:07] [Server thread/INFO]: ThreadedAnvilChunkStorage (New World (2)): All chunks are saved 2023-05-30 21:56:07,607 - minecraft - INFO - [21:56:07] [Server thread/INFO]: ThreadedAnvilChunkStorage (DIM1): All chunks are saved 2023-05-30 21:56:07,607 - minecraft - INFO - [21:56:07] [Server thread/INFO]: ThreadedAnvilChunkStorage (DIM-1): All chunks are saved 2023-05-30 21:56:07,607 - minecraft - INFO - [21:56:07] [Server thread/INFO]: ThreadedAnvilChunkStorage: All dimensions are saved

github-actions[bot] commented 1 year ago

This issue is stale because it has been open for 30 days with no activity.