Mirror von
https://github.com/ViaVersion/ViaBackwards.git
synchronisiert 2024-12-26 00:00:33 +01:00
[ci skip] Update some text and comments
Dieser Commit ist enthalten in:
Ursprung
563a3e518d
Commit
3896a12166
7
.github/ISSUE_TEMPLATE/bug_report.yml
vendored
7
.github/ISSUE_TEMPLATE/bug_report.yml
vendored
@ -19,10 +19,11 @@ body:
|
|||||||
|
|
||||||
- type: textarea
|
- type: textarea
|
||||||
attributes:
|
attributes:
|
||||||
label: Console Error
|
label: Server/Client Error
|
||||||
description: |
|
description: |
|
||||||
If you encounter warnings/errors in your console, **paste them with https://mclo.gs/ and put the paste link here**.
|
If you encounter warnings/errors in your console, **paste them with https://mclo.gs/ and put the paste link here**.
|
||||||
If the error is small/less than 10 lines, you may put it directly into this field.
|
If the error is small/less than 10 lines, you may put it directly into this field.
|
||||||
|
**Important**: If you are kicked for `Network Protocol Error` or an encoder/decoder exception, please click the `Open Report Directory` button on your client and paste the newest disconnect file contents.
|
||||||
value: |
|
value: |
|
||||||
```
|
```
|
||||||
Put the mclo.gs link or text here.
|
Put the mclo.gs link or text here.
|
||||||
@ -38,7 +39,7 @@ body:
|
|||||||
Describe the unexpected behavior.
|
Describe the unexpected behavior.
|
||||||
If you want to attach screenshots, use the comment field at the bottom of the page.
|
If you want to attach screenshots, use the comment field at the bottom of the page.
|
||||||
placeholder: |
|
placeholder: |
|
||||||
Example: "Placing signs on 1.13.2 causes text to disappear."
|
Example: "Placing signs on 1.16.5 causes text to disappear."
|
||||||
validations:
|
validations:
|
||||||
required: true
|
required: true
|
||||||
|
|
||||||
@ -49,7 +50,7 @@ body:
|
|||||||
List the steps on how we can reproduce the issue. Make sure we can easily understand what you mean with each step.
|
List the steps on how we can reproduce the issue. Make sure we can easily understand what you mean with each step.
|
||||||
placeholder: |
|
placeholder: |
|
||||||
Example:
|
Example:
|
||||||
1. Login with a 1.13.2 client
|
1. Login with a 1.16.5 client
|
||||||
2. Place a sign
|
2. Place a sign
|
||||||
3. The sign text is displayed wrong
|
3. The sign text is displayed wrong
|
||||||
validations:
|
validations:
|
||||||
|
@ -367,12 +367,14 @@ public class PlayerPacketRewriter1_13 extends RewriterBase<Protocol1_13To1_12_2>
|
|||||||
case "MC|AdvCmd" -> {
|
case "MC|AdvCmd" -> {
|
||||||
byte type = wrapper.read(Types.BYTE);
|
byte type = wrapper.read(Types.BYTE);
|
||||||
if (type == 0) {
|
if (type == 0) {
|
||||||
//Information from https://wiki.vg/index.php?title=Plugin_channels&oldid=14089
|
//Information from https://wiki.vg/index.php?title=Plugin_channels&oldid=14089 (see web archive)
|
||||||
//The Notchain client only uses this for command block minecarts and uses MC|AutoCmd for blocks, but the Notchian server still accepts it for either.
|
//The Vanilla client only uses this for command block minecarts and uses MC|AutoCmd for blocks, but the server still accepts it for either.
|
||||||
//Maybe older versions used this and we need to implement this? The issue is that we would have to save the command block types
|
//Maybe older versions used this and we need to implement this? The issue is that we would have to save the command block types
|
||||||
wrapper.setPacketType(ServerboundPackets1_13.SET_COMMAND_BLOCK);
|
wrapper.setPacketType(ServerboundPackets1_13.SET_COMMAND_BLOCK);
|
||||||
wrapper.cancel();
|
wrapper.cancel();
|
||||||
|
if (!Via.getConfig().isSuppressConversionWarnings()) {
|
||||||
protocol.getLogger().warning("Client send MC|AdvCmd custom payload to update command block, weird!");
|
protocol.getLogger().warning("Client send MC|AdvCmd custom payload to update command block, weird!");
|
||||||
|
}
|
||||||
} else if (type == 1) {
|
} else if (type == 1) {
|
||||||
wrapper.setPacketType(ServerboundPackets1_13.SET_COMMAND_MINECART);
|
wrapper.setPacketType(ServerboundPackets1_13.SET_COMMAND_MINECART);
|
||||||
wrapper.write(Types.VAR_INT, wrapper.read(Types.INT)); //Entity Id
|
wrapper.write(Types.VAR_INT, wrapper.read(Types.INT)); //Entity Id
|
||||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren