TheWhiteDog9487 92d1e282d8 使用YACL Config API自动将功能开关状态保存到文件内
使用文件系统监听器使配置文件被外部更改时可以自动重载到游戏内
解决直接连接窗口内输入框里的服务器IP没有被移除空格处理的问题
在移除空格之后打印日志
添加英文README
重新给main入口类添加`@Deprecated`标记,这东西确实用不到,后面看要不要直接删了
为AI Agent添加AGENTS.md文件以指示通用提示词
2026-06-04 19:40:45 +08:00
2026-06-01 15:16:58 +08:00
2026-06-01 15:16:58 +08:00
2023-10-18 15:48:48 +08:00
2026-06-01 15:16:58 +08:00
2026-06-01 15:16:58 +08:00
2023-10-18 15:48:48 +08:00
2026-06-01 15:16:58 +08:00

Note: This document was originally written in Chinese. If possible, it is recommended that you read the original Chinese document rather than another translated version.
Simplified Chinese (GitHub)     Simplified Chinese (Gitea)     English (GitHub)     English (Gitea)

Introduction

This mod aims to fix a bug that was reported on 26 November 2021 but has still not been fixed. Bug tracker link

Features

If the server address you enter on the “Add Server” or “Direct Connect” screen contains spaces at the beginning, end, or in the middle, this mod will automatically remove them.
This prevents the “Unknown host” bug mentioned above.

Why this mod exists
		A few months ago, I wanted to play on a server. I copied the address from the servers official website, pasted it into “Server Address”, and saved it — only to get “Unknown host”.
		No panic; this clearly meant DNS had not resolved the corresponding address, so I pinged it first.
		Ping could resolve the domains address, and then I suspected the Great Firewall might be doing something odd again, so I tested it with the tool on Chinaz, and every result matched mine.
		That was rather odd.
		After fiddling with it for a while, I found the problem.
		There was a space at the end of the server address I had copied.
		That was really infuriating. After messing around for a bit longer and confirming that the issue could be reproduced reliably, I submitted a bug to the tracker.
		And what do you think happened? 
		The issue I filed on the bug tracker
		The comment below
		An even earlier bug report
		My English is absolutely terrible, so I did not keep going; the problem description was written using translation tools.
		But deep down, I still thought this was rather absurd.
		Since your address is a String, how hard can it be to call trim afterwards?
		And as a player, when you tell me, “This was all your own carelessness; it does not even count as a bug,” I cannot accept that.
		So, this mod came to be.
	

Configuration

  • If you have version isolation enabled, it should be located at .minecraft\versions\<version name>\config\serveraddressspacefix.json5
  • If you do not have version isolation enabled, it should be at .minecraft\config\serveraddressspacefix.json5

This is just a regular JSON text file, except that JSON5 supports extra features such as comments.
All properties are annotated, including their purpose, range of values, type, default value, and so on.
You can open it in a plain text editor and modify it.
You can edit the config file while the game is running; once saved, the changes will be applied in-game automatically.

Known issues

All known issues have been fixed; if you find any new ones, please let me know.
If anyone is willing to help me fix the bug, please submit a PR ╰(°▽°)╯

Licence

I use the more radical WTFPL rather than MIT.

Description
修复添加服务器或直接连接时,服务器地址首尾包含空格导致的“未知的主机”Bug
Readme WTFPL 879 KiB
Languages
Java 100%