修改阻断问题
This commit is contained in:
parent
0834814b9a
commit
4e13437171
|
@ -898,9 +898,9 @@ public class JuniorRobot extends _RobotBase implements IJuniorRobot {
|
||||||
// Make sure that we rescan if the robot did not execute anything this turn.
|
// Make sure that we rescan if the robot did not execute anything this turn.
|
||||||
// When the robot executes the currentTurn will automatically be increased by 1,
|
// When the robot executes the currentTurn will automatically be increased by 1,
|
||||||
// So when the turn stays the same, the robot did not take any action this turn.
|
// So when the turn stays the same, the robot did not take any action this turn.
|
||||||
if (lastTurn == currentTurn) {
|
|
||||||
peer.rescan(); // Spend a turn on rescanning
|
peer.rescan(); // Spend a turn on rescanning
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -165,7 +165,7 @@ public final class RobotPeer implements IRobotPeerBattle, IRobotPeer {
|
||||||
teamMembers = null;
|
teamMembers = null;
|
||||||
isTeamLeader = false;
|
isTeamLeader = false;
|
||||||
teamIndex = -1; // Must be set to -1 when robot is not in a team
|
teamIndex = -1; // Must be set to -1 when robot is not in a team
|
||||||
} else {
|
} else if(team != null){
|
||||||
teamName = team.getName();
|
teamName = team.getName();
|
||||||
teamMembers = team.getMemberNames();
|
teamMembers = team.getMemberNames();
|
||||||
isTeamLeader = team.size() == 1; // That is current team size, more might follow later. First robot is leader
|
isTeamLeader = team.size() == 1; // That is current team size, more might follow later. First robot is leader
|
||||||
|
|
Loading…
Reference in New Issue