This commit is contained in:
GabrielMagnus 2020-03-31 14:49:41 +02:00
commit 22f91c84c2

View File

@ -148,8 +148,8 @@ public class Board {
* Gets the power down status of the robot * Gets the power down status of the robot
* @param robotID The robot id of the robot * @param robotID The robot id of the robot
*/ */
public void getPowerDown(RobotID robotID) { public boolean getPowerDown(RobotID robotID) {
robots.get(robotID).isInPowerDown(); return robots.get(robotID).isInPowerDown();
} }
/** /**