aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoris2015-11-14 17:19:20 +0100
committerJoris2015-11-14 17:19:20 +0100
commit1beb59f73bc18b2477cf1eb918ff75b8d6282c5a (patch)
treee25fa7ffdd6e7e96afd9ab18b707cadd8984f87d
parente43df972c82c8b5926f76658c7588074e6a15069 (diff)
downloadcatchvoid-1beb59f73bc18b2477cf1eb918ff75b8d6282c5a.tar.gz
catchvoid-1beb59f73bc18b2477cf1eb918ff75b8d6282c5a.tar.bz2
catchvoid-1beb59f73bc18b2477cf1eb918ff75b8d6282c5a.zip
Set back wave move, that is more fun
-rw-r--r--src/Update/CloudUpdate.elm2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Update/CloudUpdate.elm b/src/Update/CloudUpdate.elm
index f509a5f..6f0005a 100644
--- a/src/Update/CloudUpdate.elm
+++ b/src/Update/CloudUpdate.elm
@@ -63,7 +63,7 @@ getNewPoint time boardSize seed =
, initDest = initDest
, move initTime initPos initDest time =
let delta = time - initTime
- move = getMove (pointSpeed delta) (initDest `sub` initPos)
+ move = getWaveMove (pointSpeed delta) (initDest `sub` initPos) 50 50
in initPos `add` move
}
, seed''