mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-06 10:49:40 +01:00
7b0c576798
Allows us much greater control over the Spigot portion of the code and makes us more "proper" Credit to @Dmck2b for originally passing the idea along a while back
30 lines
852 B
Diff
30 lines
852 B
Diff
From e963131042579be23e566b7b326e1516955b2fe8 Mon Sep 17 00:00:00 2001
|
|
From: Thinkofdeath <thethinkofdeath@gmail.com>
|
|
Date: Thu, 9 Jan 2014 14:19:12 +0000
|
|
Subject: [PATCH] Fix anvil collisions
|
|
|
|
|
|
diff --git a/src/main/java/net/minecraft/server/BlockAnvil.java b/src/main/java/net/minecraft/server/BlockAnvil.java
|
|
index 9e1ce2f..1fa14c5 100644
|
|
--- a/src/main/java/net/minecraft/server/BlockAnvil.java
|
|
+++ b/src/main/java/net/minecraft/server/BlockAnvil.java
|
|
@@ -11,6 +11,15 @@ public class BlockAnvil extends BlockFalling {
|
|
this.a(CreativeModeTab.c);
|
|
}
|
|
|
|
+ // Spigot start
|
|
+ @Override
|
|
+ public AxisAlignedBB a( World world, int i, int j, int k )
|
|
+ {
|
|
+ updateShape( world, i, j, k );
|
|
+ return super.a( world, i, j, k );
|
|
+ }
|
|
+ // Spigot end
|
|
+
|
|
public boolean d() {
|
|
return false;
|
|
}
|
|
--
|
|
1.9.1
|
|
|