From a1c7b8db3dc4e9a0a468a6fcdf5410f2b6958135 Mon Sep 17 00:00:00 2001 From: Zeno Rogue Date: Fri, 22 Nov 2019 16:46:37 +0100 Subject: [PATCH] animateMov YA fixup --- graph.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/graph.cpp b/graph.cpp index 9030a8c0..cda84dfa 100644 --- a/graph.cpp +++ b/graph.cpp @@ -5056,7 +5056,7 @@ EX void animateMovement(cell *src, cell *tgt, int layer, int direction_hint) { EX void animateAttack(const movei& m, int layer) { if(vid.mspeed >= 5) return; // no animations! - transmatrix T = adj(m); + transmatrix T = iadj(m); bool newanim = !animations[layer].count(m.s); animation& a = animations[layer][m.s]; a.attacking = 1;