From 40d0c7e5e2c24ed0a60d6f04d1ed9b77a8d9ff58 Mon Sep 17 00:00:00 2001 From: Zeno Rogue Date: Sat, 7 Mar 2020 23:47:31 +0100 Subject: [PATCH] fixed Swords moving randomly when having Orb of the Frog --- complex.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/complex.cpp b/complex.cpp index 26d404e6..81149d86 100644 --- a/complex.cpp +++ b/complex.cpp @@ -2876,6 +2876,8 @@ EX namespace sword { } void shuffle(int i) { + changes.value_keep(dir[i].angle); + changes.value_keep(dir[i].T); dir[i].angle = hrand(sword_angles); if(SWORDDIM == 3) dir[i].T = initial_matrix(); }