more patches & fixes to existing patches

This commit is contained in:
Jake Potrebic
2021-06-14 12:17:47 -07:00
parent 38bf247e27
commit 1c8b088450
20 changed files with 169 additions and 363 deletions

View File

@@ -14,7 +14,7 @@ index 0000000000000000000000000000000000000000..00000000000000000000000000000000
public ClientboundSetTimePacket(long time, long timeOfDay, boolean doDaylightCycle) {
- this.gameTime = time;
+ this.gameTime = time % 192000; // Paper - fix guardian bean
+ this.gameTime = time % 192000; // Paper - fix guardian beam
long l = timeOfDay;
if (!doDaylightCycle) {
l = -timeOfDay;