diff --git a/src/core/game/PlayerImpl.ts b/src/core/game/PlayerImpl.ts index 4da8695bf..d1c2e1ff3 100644 --- a/src/core/game/PlayerImpl.ts +++ b/src/core/game/PlayerImpl.ts @@ -527,7 +527,7 @@ export class PlayerImpl implements Player { } canDonate(recipient: Player): boolean { - if (!this.isFriendly(recipient)) { + if (!this.isOnSameTeam(recipient)) { return false; } for (const donation of this.sentDonations) {