Boat get/set (double) occupied acceleration, (double) unoccupied deceleration, (boolean) work on land. Good values to maximize boat utility: 0.6 (fast accel.), 0.99 (no loss of boat), true/false, respectively.

This commit is contained in:
sk89q
2011-09-25 11:20:51 -07:00
parent 8f8c62b71b
commit b7c43fbff1
2 changed files with 45 additions and 3 deletions

View File

@@ -22,6 +22,32 @@ public class CraftBoat extends CraftVehicle implements Boat {
}
}
public double getOccupiedDeceleration() {
return boat.occupiedDeceleration;
}
public void setOccupiedDeceleration(double speed) {
if (speed >= 0D) {
boat.occupiedDeceleration = speed;
}
}
public double getUnoccupiedDeceleration() {
return boat.unoccupiedDeceleration;
}
public void setUnoccupiedDeceleration(double speed) {
boat.unoccupiedDeceleration = speed;
}
public boolean getWorkOnLand() {
return boat.landBoats;
}
public void setWorkOnLand(boolean workOnLand) {
boat.landBoats = workOnLand;
}
@Override
public String toString() {
return "CraftBoat";