Skip to content

Commit f2c46fc

Browse files
authored
Fix incorrect method reference in TntBlock.explode() (#10333)
1 parent 9cb47ed commit f2c46fc

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

patches/minecraft/net/minecraft/world/level/block/TntBlock.java.patch

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,12 +38,12 @@
3838
}
3939
}
4040

41-
+ @Deprecated //Forge: Prefer using IForgeBlock#catchFire
41+
+ @Deprecated //Forge: Prefer using IForgeBlock#onCaughtFire
4242
public static void m_57433_(Level p_57434_, BlockPos p_57435_) {
4343
m_57436_(p_57434_, p_57435_, (LivingEntity)null);
4444
}
4545

46-
+ @Deprecated //Forge: Prefer using IForgeBlock#catchFire
46+
+ @Deprecated //Forge: Prefer using IForgeBlock#onCaughtFire
4747
private static void m_57436_(Level p_57437_, BlockPos p_57438_, @Nullable LivingEntity p_57439_) {
4848
if (!p_57437_.f_46443_) {
4949
PrimedTnt primedtnt = new PrimedTnt(p_57437_, (double)p_57438_.m_123341_() + 0.5D, (double)p_57438_.m_123342_(), (double)p_57438_.m_123343_() + 0.5D, p_57439_);

0 commit comments

Comments
 (0)