mirror of
https://github.com/inf112-v20/Fiasko.git
synced 2025-07-01 21:54:42 +02:00
Fikser returtype for getPowerDown
This commit is contained in:
@ -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();
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Reference in New Issue
Block a user