3
0
Mirror von https://github.com/GeyserMC/Geyser.git synchronisiert 2024-10-05 09:20:07 +02:00

Javadoc fix and tiny teleport optimization

Dieser Commit ist enthalten in:
Camotoy 2021-08-15 14:57:02 -04:00
Ursprung af06ac5143
Commit ce748990a4
Es konnte kein GPG-Schlüssel zu dieser Signatur gefunden werden
GPG-Schlüssel-ID: 7EEFB66FE798081F

Datei anzeigen

@ -187,9 +187,7 @@ public class GeyserSession implements CommandSender {
private final Long2ObjectMap<ClientboundMapItemDataPacket> storedMaps = Long2ObjectMaps.synchronize(new Long2ObjectOpenHashMap<>()); private final Long2ObjectMap<ClientboundMapItemDataPacket> storedMaps = Long2ObjectMaps.synchronize(new Long2ObjectOpenHashMap<>());
/** /**
* Stores the differences between Java and Bedrock biome network IDs. * Stores the map between Java and Bedrock biome network IDs.
* If Java's ocean biome is 0, and Bedrock's is 0, it will not be in the list.
* If Java's bamboo biome is 42, and Bedrock's is 48, it will be in this list.
*/ */
private final Int2IntMap biomeTranslations = new Int2IntOpenHashMap(); private final Int2IntMap biomeTranslations = new Int2IntOpenHashMap();
@ -1166,9 +1164,9 @@ public class GeyserSession implements CommandSender {
} }
} }
ObjectIterator<Int2ObjectMap.Entry<TeleportCache>> it = teleportMap.int2ObjectEntrySet().iterator();
if (teleportID != -1) { if (teleportID != -1) {
ObjectIterator<Int2ObjectMap.Entry<TeleportCache>> it = teleportMap.int2ObjectEntrySet().iterator();
// Confirm the current teleport and any earlier ones // Confirm the current teleport and any earlier ones
while (it.hasNext()) { while (it.hasNext()) {
TeleportCache entry = it.next().getValue(); TeleportCache entry = it.next().getValue();