From 86a8e2300abdc0a39cf4f622bc776ef2c776fff7 Mon Sep 17 00:00:00 2001 From: Jannis R Date: Tue, 16 May 2017 03:44:53 +0200 Subject: [PATCH] bugfixes :bug: --- parse.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/parse.js b/parse.js index ac8143c9..7e554bea 100644 --- a/parse.js +++ b/parse.js @@ -194,8 +194,8 @@ const movement = (tz, l, ln, r) => (m) => { if (m.ani && Array.isArray(m.ani.mSec)) for (let i = 0; i < m.ani.mSec.length; i++) result.frames.push({ - from: l[m.ani.fLocX[i]], - to: l[m.ani.tLocX[i]], + origin: l[m.ani.fLocX[i]], + destination: l[m.ani.tLocX[i]], t: m.ani.mSec[i] }) return result