mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-21 14:46:39 +01:00
[ci skip] Add missing feature patch identifiers
This commit is contained in:
parent
575c1c4f89
commit
11d708d831
4 changed files with 8 additions and 0 deletions
|
@ -6,6 +6,8 @@ Subject: [PATCH] Improve exact choice recipe ingredients
|
|||
Fixes exact choices not working with recipe book clicks
|
||||
and shapeless recipes.
|
||||
|
||||
Feature patch
|
||||
|
||||
== AT ==
|
||||
public net.minecraft.world.item.ItemStackLinkedSet TYPE_AND_TAG
|
||||
|
||||
|
|
|
@ -17,6 +17,8 @@ A lot of this code is self-contained in a helper class.
|
|||
Aside from making the obvious class/function renames and obfhelpers I didn't need to modify much.
|
||||
Just added Bukkit's event system and took a few liberties with dead code and comment misspellings.
|
||||
|
||||
Feature patch
|
||||
|
||||
== AT ==
|
||||
public net.minecraft.world.level.block.RedStoneWireBlock shouldSignal
|
||||
public net.minecraft.world.level.block.RedStoneWireBlock canSurvive(Lnet/minecraft/world/level/block/state/BlockState;Lnet/minecraft/world/level/LevelReader;Lnet/minecraft/core/BlockPos;)Z
|
||||
|
|
|
@ -20,6 +20,8 @@ Alternate Current needs the following modifications:
|
|||
* RedStoneWireBlock: Replace calls to vanilla's or Eigencraft's methods for handling power changes with calls to
|
||||
Alternate Current's wire handler.
|
||||
|
||||
Feature patch
|
||||
|
||||
diff --git a/src/main/java/alternate/current/wire/LevelHelper.java b/src/main/java/alternate/current/wire/LevelHelper.java
|
||||
new file mode 100644
|
||||
index 0000000000000000000000000000000000000000..eda108e2df9bf7d1ddd89287b8d2c2d7f1637c96
|
||||
|
|
|
@ -7,6 +7,8 @@ Instead of searching/testing every player online on the server,
|
|||
we can instead use the nearby player tracking system to reduce
|
||||
the number of tests per search.
|
||||
|
||||
Feature patch
|
||||
|
||||
diff --git a/src/main/java/net/minecraft/server/level/ServerLevel.java b/src/main/java/net/minecraft/server/level/ServerLevel.java
|
||||
index d4376ed215d97066a21e462fae2a0e25ad8a16a1..aab652174a8175765cad548f7c61ce353ca74803 100644
|
||||
--- a/src/main/java/net/minecraft/server/level/ServerLevel.java
|
||||
|
|
Loading…
Reference in a new issue