diff options
| author | Rubén Beltrán del Río <ben@nsovocal.com> | 2018-04-23 07:58:20 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-04-23 07:58:20 -0500 |
| commit | 6768cd461ec1a8ea87c0f64e1b3c29e36b0b02ed (patch) | |
| tree | a681bf5e89210cc86f8108696e4f51ee16d62ee6 /lib/components | |
| parent | 7ade6f8d96825386bf2e89dea51f9297cbac8e9c (diff) | |
Draw the Arena (#7)
* Add defaults to config
* Create arena sprite
* Draw the arena
* Draw a face when cooling down the dash
* Correct linter issues
Diffstat (limited to 'lib/components')
| -rw-r--r-- | lib/components/dash.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/components/dash.js b/lib/components/dash.js index de1fe2c..77807ef 100644 --- a/lib/components/dash.js +++ b/lib/components/dash.js @@ -37,7 +37,7 @@ export default class DashComponent extends Component { * @instance * @memberof DashComponent */ - this.cooldown = this.cooldown || 4000; + this.cooldown = this.cooldown || 3000; /** * Current cooldown |