Fixed broken death message

This commit is contained in:
Sollace 2023-08-16 18:35:24 +01:00
parent 655b968725
commit 67a2c27243
No known key found for this signature in database
GPG key ID: E52FACE7B5C773DB

View file

@ -77,7 +77,7 @@ public class MagicalDamageSource extends DamageSource {
return Pony.of(target).filter(e -> e.getSpecies().canFly()).map(pony -> {
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;
}).orElse(message);