aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/gtPlusPlus/everglades/world/TeleporterDimensionMod.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/gtPlusPlus/everglades/world/TeleporterDimensionMod.java')
-rw-r--r--src/main/java/gtPlusPlus/everglades/world/TeleporterDimensionMod.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main/java/gtPlusPlus/everglades/world/TeleporterDimensionMod.java b/src/main/java/gtPlusPlus/everglades/world/TeleporterDimensionMod.java
index 2951ed3a57..15fcd1fde4 100644
--- a/src/main/java/gtPlusPlus/everglades/world/TeleporterDimensionMod.java
+++ b/src/main/java/gtPlusPlus/everglades/world/TeleporterDimensionMod.java
@@ -449,11 +449,11 @@ public class TeleporterDimensionMod extends Teleporter {
while (iterator.hasNext()) {
Long olong = (Long) iterator.next();
Teleporter.PortalPosition portalposition = (Teleporter.PortalPosition) this.destinationCoordinateCache
- .getValueByKey(olong.longValue());
+ .getValueByKey(olong);
if (portalposition == null || portalposition.lastUpdateTime < j) {
iterator.remove();
- this.destinationCoordinateCache.remove(olong.longValue());
+ this.destinationCoordinateCache.remove(olong);
}
}
}