mirror of
https://github.com/barkeser2002/Tenet.git
synced 2026-09-25 12:45:59 +03:00
19 lines
519 B
Diff
19 lines
519 B
Diff
--- ../src-base/minecraft/net/minecraftforge/common/ForgeChunkManager.java
|
|
+++ ../src-work/minecraft/net/minecraftforge/common/ForgeChunkManager.java
|
|
@@ -352,6 +352,7 @@
|
|
{
|
|
this.ticket = ticket;
|
|
this.location = location;
|
|
+ ticket.world.activity.put(location, ticket);
|
|
}
|
|
}
|
|
|
|
@@ -363,6 +364,7 @@
|
|
{
|
|
this.ticket = ticket;
|
|
this.location = location;
|
|
+ ticket.world.activity.remove(location, ticket);
|
|
}
|
|
}
|
|
|