Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

XXL Engines and Super-Cooled Myomer #6639

Draft
wants to merge 1 commit into
base: master
Choose a base branch
from
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions megamek/src/megamek/common/Engine.java
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

/**
* This class represents an engine, such as those driving 'Meks.
*
*
* @author Reinhard Vicinus
*/
public class Engine implements Serializable, ITechnology {
Expand Down Expand Up @@ -645,7 +645,7 @@ public int getWalkHeat(Entity e) {
case FUEL_CELL:
return 0;
case XXL_ENGINE:
return hasSCM ? 3 : 4;
return hasSCM ? 2 : 4;
default:
return hasSCM ? 0 : 1;
}
Expand All @@ -661,7 +661,7 @@ public int getRunHeat(Entity e) {
case FUEL_CELL:
return 0;
case XXL_ENGINE:
return hasSCM ? 4 : 6;
return hasSCM ? 2 : 6;
default:
return hasSCM ? 0 : 2;
}
Expand All @@ -677,7 +677,7 @@ public int getSprintHeat(Entity e) {
case FUEL_CELL:
return 0;
case XXL_ENGINE:
return hasSCM ? 6 : 9;
return hasSCM ? 2 : 9;
default:
return hasSCM ? 0 : 3;
}
Expand Down