Tidy-ups prior to release

This commit is contained in:
Cmdr McDonald
2017-01-23 13:05:14 +00:00
parent 0e2c0349e0
commit 20ba6eb822
6 changed files with 18 additions and 1 deletions

View File

@@ -656,4 +656,12 @@ export default class Module {
getDamageDist() {
return this.getModValue('damagedist') || this.damagedist;
}
/**
* Get the shot speed for this module, taking in to account modifications
* @return {string} the damage distribution for this module
*/
getShotSpeed() {
return this._getModifiedValue('shotspeed');
}
}