Fix custom direct BlockState being not correctly set in DamageSource

By: Doc <nachito94@msn.com>
This commit is contained in:
CraftBukkit/Spigot 2024-05-03 21:58:56 -04:00
parent 9bf6a88788
commit fb2cd0f8e3

View File

@ -87,7 +87,7 @@
+ }
+ // Cloning the instance lets us return unique instances of DamageSource without affecting constants defined in DamageSources
+ DamageSource damageSource = this.cloneInstance();
+ damageSource.directBlockState = directBlockState;
+ damageSource.directBlockState = blockState;
+ return damageSource;
+ }
+