Mirror von
https://github.com/ViaVersion/ViaVersion.git
synchronisiert 2024-11-03 14:50:30 +01:00
Fix hardcore flag
Dieser Commit ist enthalten in:
Ursprung
3ddd289b49
Commit
7f2023176f
@ -26,7 +26,10 @@ public class EntityPackets {
|
||||
@Override
|
||||
public void registerMap() {
|
||||
map(Type.INT); // Entity ID
|
||||
handler(wrapper -> wrapper.write(Type.BOOLEAN, false)); // Hardcore //TODO save?
|
||||
handler(wrapper -> {
|
||||
short gamemode = wrapper.passthrough(Type.UNSIGNED_BYTE);
|
||||
wrapper.write(Type.BOOLEAN, (gamemode & 0x08) != 0); // Hardcore
|
||||
});
|
||||
map(Type.UNSIGNED_BYTE); // Gamemode
|
||||
map(Type.BYTE); // Previous Gamemode
|
||||
map(Type.STRING_ARRAY); // World List
|
||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren