Skip to content
This repository was archived by the owner on Jun 19, 2021. It is now read-only.

Commit 2c205e0

Browse files
author
Simon Gardling
committed
on the latest version now
1 parent 16ba48e commit 2c205e0

File tree

6 files changed

+1552
-2
lines changed

6 files changed

+1552
-2
lines changed

PATCHES.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ This is an overview over all patches that are currently used.
88

99
| Side | Patch | Author | CoAuthors |
1010
| ----- | ------------- |:-------------:| -----:|
11+
| server | (AI-Improvements) Optimized tan for ControllerLook | bl4ckscor3 | |
1112
| server | AFK API | William Blake Galbreath | |
1213
| api | AFK API | William Blake Galbreath | |
1314
| server | Ability to re-add farmland mechanics from Alpha | Yive | |
@@ -250,6 +251,7 @@ This is an overview over all patches that are currently used.
250251
| api | Lagging threshold | William Blake Galbreath | |
251252
| server | Left handed API | BillyGalbreath | |
252253
| api | Left handed API | BillyGalbreath | |
254+
| server | Lithium: CompactSineLUT | JellySquid | |
253255
| server | LivingEntity safeFallDistance | William Blake Galbreath | |
254256
| api | LivingEntity safeFallDistance | William Blake Galbreath | |
255257
| server | LivingEntity#broadcastItemBreak | William Blake Galbreath | |
@@ -329,6 +331,8 @@ This is an overview over all patches that are currently used.
329331
| api | PlayerSetSpawnerTypeWithEggEvent | William Blake Galbreath | |
330332
| server | Players should not cram to death | William Blake Galbreath | |
331333
| server | Populator seed controls | Spottedleaf | |
334+
| server | Port Cadmium | Lucy-t | |
335+
| server | Port LazyDFU | Andrew Steinborn | |
332336
| server | Preload ProtocolLib EnumWrappers | ishland | |
333337
| server | Prevent long map entry creation in light engine | Spottedleaf | |
334338
| server | Prevent unload() calls removing tickets for sync loads | Spottedleaf | |

buildSrc/src/main/kotlin/MCDevImports.kt

Lines changed: 19 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,5 +24,22 @@ val libraryImports = setOf<LibraryImport>(
2424
LibraryImport("com.mojang", "brigadier", "com/mojang/brigadier", "CommandDispatcher"),
2525
LibraryImport("com.mojang", "brigadier", "com/mojang/brigadier/tree", "LiteralCommandNode"),
2626
LibraryImport("com.mojang", "brigadier", "com/mojang/brigadier/suggestion", "SuggestionsBuilder"),
27-
LibraryImport("com.mojang", "brigadier", "com/mojang/brigadier/arguments", "BoolArgumentType")
28-
)
27+
LibraryImport("com.mojang", "brigadier", "com/mojang/brigadier/arguments", "BoolArgumentType"),
28+
LibraryImport("com.mojang", "datafixerupper", "com/mojang/datafixers", "FieldFinder"),
29+
LibraryImport("com.mojang", "datafixerupper", "com/mojang/datafixers", "DataFixUtils"),
30+
LibraryImport("com.mojang", "datafixerupper", "com/mojang/datafixers", "TypeRewriteRule"),
31+
LibraryImport("com.mojang", "datafixerupper", "com/mojang/datafixers", "Typed"),
32+
LibraryImport("com.mojang", "datafixerupper", "com/mojang/datafixers", "TypedOptic"),
33+
LibraryImport("com.mojang", "datafixerupper", "com/mojang/datafixers", "View"),
34+
LibraryImport("com.mojang", "datafixerupper", "com/mojang/datafixers/functions", "Apply"),
35+
LibraryImport("com.mojang", "datafixerupper", "com/mojang/datafixers/functions", "Comp"),
36+
LibraryImport("com.mojang", "datafixerupper", "com/mojang/datafixers/functions", "PointFree"),
37+
LibraryImport("com.mojang", "datafixerupper", "com/mojang/datafixers/functions", "PointFreeRule"),
38+
LibraryImport("com.mojang", "datafixerupper", "com/mojang/datafixers/optics", "IdAdapter"),
39+
LibraryImport("com.mojang", "datafixerupper", "com/mojang/datafixers/optics", "Inj1"),
40+
LibraryImport("com.mojang", "datafixerupper", "com/mojang/datafixers/optics", "Inj2"),
41+
LibraryImport("com.mojang", "datafixerupper", "com/mojang/datafixers/optics", "Optics"),
42+
LibraryImport("com.mojang", "datafixerupper", "com/mojang/datafixers/optics", "Proj1"),
43+
LibraryImport("com.mojang", "datafixerupper", "com/mojang/datafixers/optics", "Proj2"),
44+
LibraryImport("com.mojang", "datafixerupper", "com/mojang/datafixers/types", "Type")
45+
)

0 commit comments

Comments
 (0)