mirror of
https://github.com/magefree/mage.git
synced 2026-01-26 21:29:17 -08:00
[KHM] fixed Reckless Crew not allowing equipping when player controls no vehicles
This commit is contained in:
parent
9b8df48183
commit
680083dd53
1 changed files with 1 additions and 1 deletions
|
|
@ -78,7 +78,7 @@ class RecklessCrewEffect extends OneShotEffect {
|
|||
if (player == null) {
|
||||
return false;
|
||||
}
|
||||
if (vehicleCount < 1) {
|
||||
if (equipCount < 1) {
|
||||
return true;
|
||||
}
|
||||
for (UUID tokenId : token.getLastAddedTokenIds()) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue