1
0
Fork 0

Remove redundant (and ugly) set1 function

This commit is contained in:
stuart 2009-02-12 20:32:04 +00:00
parent a0a493b8ce
commit 72cc845a63

View file

@ -45,19 +45,6 @@ var breakHash = {
"/controls/flight/speedbrake" : { type: type.MCBF, failure: fail.JAM, desc: "Speed Brake" } "/controls/flight/speedbrake" : { type: type.MCBF, failure: fail.JAM, desc: "Speed Brake" }
}; };
# Set a given serviceable property to 1.
var set1 = func(prop) {
n = props.globals.getNode(prop, 1);
if (n.getValue() == nil) {
n.setBoolValue(1);
}
if (n.getType() == "UNSPECIFIED") {
n.setBoolValue(n.getValue());
}
}
# Return the failure entry for a given property # Return the failure entry for a given property
var getFailure = func (prop) { var getFailure = func (prop) {
var o = breakHash[prop]; var o = breakHash[prop];
@ -247,4 +234,5 @@ _setlistener("/sim/signals/fdm-initialized", func {
# Start checking for failures. # Start checking for failures.
checkMTBF(); checkMTBF();
}); });