eslint didn't like these not having semi-colons
I should probably turn the semi-colon linter off since I really dislike the semi-colons everywhere, but it's probably too late for that at this point in the project.
This commit is contained in:
@ -84,22 +84,22 @@ exports.SLControllerConfigMessage = class SLControllerConfigMessage extends SLMe
|
|||||||
}
|
}
|
||||||
|
|
||||||
hasSolar() {
|
hasSolar() {
|
||||||
return !!(this.equipFlags & 0x1)
|
return !!(this.equipFlags & 0x1);
|
||||||
}
|
}
|
||||||
|
|
||||||
hasSolarAsHeatpump() {
|
hasSolarAsHeatpump() {
|
||||||
return !!(this.equipFlags & 0x2)
|
return !!(this.equipFlags & 0x2);
|
||||||
}
|
}
|
||||||
|
|
||||||
hasChlorinator() {
|
hasChlorinator() {
|
||||||
return !!(this.equipFlags & 0x4)
|
return !!(this.equipFlags & 0x4);
|
||||||
}
|
}
|
||||||
|
|
||||||
hasCooling() {
|
hasCooling() {
|
||||||
return !!(this.equipFlags & 0x800)
|
return !!(this.equipFlags & 0x800);
|
||||||
}
|
}
|
||||||
|
|
||||||
hasIntellichem() {
|
hasIntellichem() {
|
||||||
return !!(this.equipFlags & 0x8000)
|
return !!(this.equipFlags & 0x8000);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
Reference in New Issue
Block a user