Fix lint errors

This commit is contained in:
Phlosioneer 2020-06-16 16:21:45 -04:00
parent 83a4928be5
commit d4fc2e6dcd
1 changed files with 2 additions and 3 deletions

View File

@ -23,12 +23,11 @@ export class MinerComponent extends Component {
duplicateWithoutContents() { duplicateWithoutContents() {
return new MinerComponent({ return new MinerComponent({
chainable: this.chainable, chainable: this.chainable,
minedItem: this.minedItem minedItem: this.minedItem,
}); });
} }
/** /**
*
* @param {{chainable?: boolean, minedItem?: BaseItem}} param0 * @param {{chainable?: boolean, minedItem?: BaseItem}} param0
*/ */
constructor({ chainable = false, minedItem = null }) { constructor({ chainable = false, minedItem = null }) {