-
Notifications
You must be signed in to change notification settings - Fork 117
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
new lines #1
Comments
Hi! What version of minecraft server you are using? |
It's a FTB DW20, but that's not the problem, because if I go to the server console the output from there it's just fine. But when I use the mcrcon, the output comes in only 1 line event if the raw output is on multiple lines. I can give you a screenshot if that would help you. |
Some servers (vanilla for example) does not send newlines at all so this might be tricky to fix on the clientside. Obvious fix would be to fix this on the serverside. Any other suggestions? |
1.6.4
|
Well, the client doesn't seem to have that problem :)
|
This is known bug in minecraft vanilla server: https://bugs.mojang.com/browse/MC-7569 I could try to write some workaround hacks (if even possible) but I rather wait for proper fix on serverside before doing that. |
@Tiiffi could you please add a command-line option to force new-line insertion in RCON. Vanilla MC server has this bug since 2013 and it seems it will never be fixed. So I know that it's better to fix it on serverside but we don't have such option. I believe this should be a simple change. No need to do any tricks to detect is RCON contains new-line or not. End user will specify it in command-line. |
I am not sure how to do that. Minecraft server is pushing out one big block of data without any new line markers. As far as I know it's impossible to detect where new lines should be. Only thing I can do is to add workarounds for some command responses (like add newline before every '/' character when invoking "help" command). |
The output does not know how to handle 'new line' characters. It displays all output on a single line.
Same on windows and linux.
I don't know C that well, but I think line 713 might be the problem.
The text was updated successfully, but these errors were encountered: