1
0
Fork 0
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:
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 -> { 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);