mirror of
https://github.com/Sollace/Unicopia.git
synced 2025-02-01 03:26:44 +01:00
Fixed players wearing the alicorn amulet getting the time change ability. #300
This commit is contained in:
parent
1f2d6c0411
commit
cef8ef15ce
1 changed files with 1 additions and 1 deletions
|
@ -19,7 +19,7 @@ public class TimeChangeAbility implements Ability<Rot> {
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public boolean canUse(Race.Composite race) {
|
public boolean canUse(Race.Composite race) {
|
||||||
return Ability.super.canUse(race) || race.pseudo() == Race.UNICORN;
|
return canUse(race.physical()) || race.pseudo() == Race.UNICORN;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|
Loading…
Reference in a new issue