mirror of
https://github.com/Sollace/Unicopia.git
synced 2025-03-04 17:21:28 +01:00
Fixed broken death message
This commit is contained in:
parent
655b968725
commit
67a2c27243
1 changed files with 1 additions and 1 deletions
|
@ -77,7 +77,7 @@ public class MagicalDamageSource extends DamageSource {
|
||||||
return Pony.of(target).filter(e -> e.getSpecies().canFly()).map(pony -> {
|
return Pony.of(target).filter(e -> e.getSpecies().canFly()).map(pony -> {
|
||||||
|
|
||||||
if (pony.getPhysics().isFlying()) {
|
if (pony.getPhysics().isFlying()) {
|
||||||
return Text.translatable("death.attack.generic.whilst_flying", message);
|
return Text.translatable("death.attack.unicopia.generic.whilst_flying", message);
|
||||||
}
|
}
|
||||||
return message;
|
return message;
|
||||||
}).orElse(message);
|
}).orElse(message);
|
||||||
|
|
Loading…
Add table
Reference in a new issue