Mirror von
https://github.com/PaperMC/Paper.git
synchronisiert 2024-11-15 12:30:06 +01:00
Add Unit Tests for geHardness and getBlastResistance
Dieser Commit ist enthalten in:
Ursprung
53d3ac0a97
Commit
c4220dc24f
@ -1,5 +1,14 @@
|
||||
--- a/net/minecraft/server/Block.java
|
||||
+++ b/net/minecraft/server/Block.java
|
||||
@@ -17,7 +17,7 @@
|
||||
public static final RegistryBlocks<MinecraftKey, Block> REGISTRY = new RegistryBlocks(Block.a);
|
||||
public static final RegistryBlockID<IBlockData> REGISTRY_ID = new RegistryBlockID();
|
||||
protected final int g;
|
||||
- protected final float strength;
|
||||
+ public final float strength; // PAIL: private -> public
|
||||
protected final float durability;
|
||||
protected final boolean j;
|
||||
protected final SoundEffectType stepSound;
|
||||
@@ -212,7 +212,7 @@
|
||||
}
|
||||
|
||||
|
@ -215,4 +215,18 @@ public class PerMaterialTest extends AbstractTestingBase {
|
||||
assertFalse(material.isInteractable());
|
||||
}
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testBlockHardness() {
|
||||
if (material.isBlock()) {
|
||||
assertThat(material.getHardness(), is(CraftMagicNumbers.getBlock(material).strength));
|
||||
}
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testBlastResistance() {
|
||||
if (material.isBlock()) {
|
||||
assertThat(material.getBlastResistance(), is(CraftMagicNumbers.getBlock(material).k())); // PAIL getDurability
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren