From a68bfd7223c56e76207449a825e0ba5f0eabcabf Mon Sep 17 00:00:00 2001 From: VirtualColossus Date: Wed, 11 Mar 2020 13:01:49 +0000 Subject: [PATCH] Fix gchq#973 custom setting correction --- src/core/operations/Lorenz.mjs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/core/operations/Lorenz.mjs b/src/core/operations/Lorenz.mjs index e1446543..c15f993d 100644 --- a/src/core/operations/Lorenz.mjs +++ b/src/core/operations/Lorenz.mjs @@ -293,8 +293,8 @@ class Lorenz extends Operation { chosenSetting.S[3] = this.readLugs(lugs3); chosenSetting.S[4] = this.readLugs(lugs4); chosenSetting.S[5] = this.readLugs(lugs5); - chosenSetting.M[1] = this.readLugs(lugm37); - chosenSetting.M[2] = this.readLugs(lugm61); + chosenSetting.M[1] = this.readLugs(lugm61); + chosenSetting.M[2] = this.readLugs(lugm37); chosenSetting.X[1] = this.readLugs(lugx1); chosenSetting.X[2] = this.readLugs(lugx2); chosenSetting.X[3] = this.readLugs(lugx3);