Added jitter for hardpoints

This commit is contained in:
Cmdr McDonald
2016-11-14 22:58:09 +00:00
parent 54c61ecb7d
commit 0571e8e099
4 changed files with 14 additions and 9 deletions

View File

@@ -516,4 +516,11 @@ export default class Module {
return this._getModifiedValue('cells');
}
/**
* Get the jitter for this module, taking in to account modifications
* @return {Number} the jitter for this module
*/
getJitter() {
return this._getModifiedValue('jitter', true);
}
}