Skip to content

Commit

Permalink
Tidy-ups
Browse files Browse the repository at this point in the history
  • Loading branch information
cmdrmcdonald committed Jan 25, 2017
1 parent 351b084 commit 89f2273
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 2 deletions.
6 changes: 6 additions & 0 deletions ChangeLog.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,12 @@
* Handle burst rate of fire as an absolute number rather than a perentage modification
* Ensure that clip values are always rounded up
* Ensure that focused weapon mod uses range modifier to increase falloff as well
* Use coriolis-data 2.2.11:
* Remove non-existent chaff launcher capacity blueprint grades
* Fix incorrect values for charge enhanced power distributor
* Remove incorrect AFMU blueprints
* Correct fragment cannon Double Shot blueprint information
* Correct Focused weapon blueprint information

#2.2.10
* Fix detailed export of module reinforcement packages
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "coriolis_shipyard",
"version": "2.2.11b",
"version": "2.2.11",
"repository": {
"type": "git",
"url": "https://github.com/EDCD/coriolis"
Expand Down
1 change: 1 addition & 0 deletions src/app/components/ModalHelp.jsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
/* eslint react/no-danger: 0 */
import React from 'react';
import { findDOMNode } from 'react-dom';
import TranslatedComponent from './TranslatedComponent';
Expand Down
2 changes: 1 addition & 1 deletion src/app/shipyard/Module.js
Original file line number Diff line number Diff line change
Expand Up @@ -545,7 +545,7 @@ export default class Module {
getClip() {
// Clip size is always rounded up
let result = this._getModifiedValue('clip');
if (result) { result = Math.ceil(result) };
if (result) { result = Math.ceil(result); }
return result;
}

Expand Down

0 comments on commit 89f2273

Please sign in to comment.