Skip to content

Commit

Permalink
Allow assign the same pawns to any tasks
Browse files Browse the repository at this point in the history
  • Loading branch information
remmintan committed Mar 15, 2024
1 parent ce49725 commit cab2a45
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ public TaskControl(Colonist colonist) {

@Override
public boolean canStartTask(ITask task) {
return !hasTask() && !this.returnedIds.asMap().containsKey(task.getId()) && colonist.getCurrentFoodLevel() > 0;
return !this.returnedIds.asMap().containsKey(task.getId()) && colonist.getCurrentFoodLevel() > 0;
}

@Override
Expand Down

0 comments on commit cab2a45

Please sign in to comment.