From 47605b1ff30285c1b4c2d6dd6ff142445cc0947f Mon Sep 17 00:00:00 2001 From: dsc Date: Mon, 13 Dec 2010 06:00:24 -0800 Subject: [PATCH] Speeds up player a tiny bit -- also forgot to turn countdown back on. --- src/tanks/config.cjs | 2 +- src/tanks/thing/player.cjs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/tanks/config.cjs b/src/tanks/config.cjs index 2518524..5d10793 100644 --- a/src/tanks/config.cjs +++ b/src/tanks/config.cjs @@ -7,7 +7,7 @@ exports['defaults'] = { createGridCanvas : 1, createGridTable : 0, showGridCoords : 0, - showCountdown : 0 + showCountdown : 1 }, pathing : { overlayAIPaths : 0, diff --git a/src/tanks/thing/player.cjs b/src/tanks/thing/player.cjs index 381fe66..f7768ca 100644 --- a/src/tanks/thing/player.cjs +++ b/src/tanks/thing/player.cjs @@ -17,7 +17,7 @@ Tank.subclass('PlayerTank', { // Attributes stats: { hp : 1, // health - move : 0.75, // move speed (squares/sec) + move : 0.90, // move speed (squares/sec) rotate : HALF_PI, // rotation speed (radians/sec) power : 1, // attack power speed : 0.5, // attack cool (sec) -- 1.7.0.4