Mirror von
https://github.com/ViaVersion/ViaVersion.git
synchronisiert 2024-11-08 17:20:24 +01:00
Fix remove in ChunkLightStorage
Dieser Commit ist enthalten in:
Ursprung
a2acd261d8
Commit
3feff8e751
@ -35,7 +35,7 @@ public final class ChunkLightStorage implements StorableObject {
|
|||||||
}
|
}
|
||||||
|
|
||||||
public @Nullable ChunkLight removeLight(final int x, final int z) {
|
public @Nullable ChunkLight removeLight(final int x, final int z) {
|
||||||
return lightPackets.get(getChunkSectionIndex(x, z));
|
return lightPackets.remove(getChunkSectionIndex(x, z));
|
||||||
}
|
}
|
||||||
|
|
||||||
public void addLoadedChunk(final int x, final int z) {
|
public void addLoadedChunk(final int x, final int z) {
|
||||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren