Allow alicorns to use time change and move the sun to where you're looking when starting the ability

This commit is contained in:
Sollace 2024-02-12 17:29:37 +00:00
parent ceb98f6fab
commit cdcbfea8dc
No known key found for this signature in database
GPG key ID: E52FACE7B5C773DB

View file

@ -19,7 +19,7 @@ public class TimeChangeAbility implements Ability<Rot> {
@Override
public boolean canUse(Race.Composite race) {
return race.pseudo() == Race.UNICORN;
return Ability.super.canUse(race) || race.pseudo() == Race.UNICORN;
}
@Override