[SPIGOT-946] Begin making use of access transforms to simplify patching.

This commit is contained in:
md_5
2015-06-06 19:33:48 +10:00
parent a6a57a96d0
commit a65e45d889
47 changed files with 76 additions and 632 deletions

View File

@@ -1,14 +1,5 @@
--- a/net/minecraft/server/BlockJukeBox.java
+++ b/net/minecraft/server/BlockJukeBox.java
@@ -32,7 +32,7 @@
}
}
- private void dropRecord(World world, BlockPosition blockposition, IBlockData iblockdata) {
+ public void dropRecord(World world, BlockPosition blockposition, IBlockData iblockdata) { // CraftBukkit - public
if (!world.isClientSide) {
TileEntity tileentity = world.getTileEntity(blockposition);
@@ -136,6 +136,11 @@
}