# HG changeset patch # User Robert McIntyre # Date 1332477751 18000 # Node ID 8dd17081829f4451623ed2f550f861e1aef03bfb # Parent 1844bdd5631498a229205c76b778ec711756bc23 changed :moves to give a vector instead of hash-map because move order is important diff -r 1844bdd56314 -r 8dd17081829f clojure/com/aurellem/gb/pokemon.clj --- a/clojure/com/aurellem/gb/pokemon.clj Thu Mar 22 23:39:02 2012 -0500 +++ b/clojure/com/aurellem/gb/pokemon.clj Thu Mar 22 23:42:31 2012 -0500 @@ -228,7 +228,7 @@ :dv dv-values :original-trainer OT-name :ID ID - :moves (zipmap moves moves-pp) + :moves (mapv vector moves moves-pp) ;; ephemerial :satus status @@ -299,7 +299,9 @@ (print "\n") (println "+------------------+----+--------+--------+") (println "| Move | PP | Max PP | PP UPs |") - + (println "+------------------+----+--------+--------+") + + (println "+------------------+----+--------+--------+")