From 6768cd461ec1a8ea87c0f64e1b3c29e36b0b02ed Mon Sep 17 00:00:00 2001 From: Rubén Beltrán del Río Date: Mon, 23 Apr 2018 07:58:20 -0500 Subject: 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 --- lib/systems/dash.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/systems/dash.js') diff --git a/lib/systems/dash.js b/lib/systems/dash.js index d05e9ea..f648d36 100644 --- a/lib/systems/dash.js +++ b/lib/systems/dash.js @@ -1,7 +1,7 @@ import { System } from '@serpentity/serpentity'; const internals = { - kForce: 10 + kForce: 20 }; import DasherNode from '../nodes/dasher'; -- cgit