mirror of
https://github.com/PaperMC/Paper.git
synced 2024-12-04 08:24:12 +01:00
SPIGOT-2171: Fix shield blocking sounds
This commit is contained in:
parent
199b11bdd0
commit
b103841da3
@ -266,7 +266,8 @@
|
|||||||
f *= 0.75F;
|
f *= 0.75F;
|
||||||
}
|
}
|
||||||
|
|
||||||
boolean flag = false;
|
- boolean flag = false;
|
||||||
|
+ boolean flag = f > 0.0F && this.d(damagesource); // Copied from below
|
||||||
|
|
||||||
- if (f > 0.0F && this.d(damagesource)) {
|
- if (f > 0.0F && this.d(damagesource)) {
|
||||||
+ // CraftBukkit - Moved into damageEntity0(DamageSource, float)
|
+ // CraftBukkit - Moved into damageEntity0(DamageSource, float)
|
||||||
|
Loading…
Reference in New Issue
Block a user