From 2c7596c871be07f0e18b1a4650530a63079ee530 Mon Sep 17 00:00:00 2001 From: Erin Date: Thu, 2 Jun 2022 23:56:32 +0200 Subject: [PATCH] ADDED VERY IMPORTANT CHANGE --- ablescript/src/base_55.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ablescript/src/base_55.rs b/ablescript/src/base_55.rs index ea1255da..2e5a5a3e 100644 --- a/ablescript/src/base_55.rs +++ b/ablescript/src/base_55.rs @@ -5,7 +5,7 @@ pub const fn char2num(c: char) -> isize { '/' => 53, '\\' => 54, '.' => 55, - 'U' => -210, + 'U' => -210, // Backwards compatibility 'A'..='Z' => -(c as isize) + 64, 'a'..='z' => (c as isize) - 96, _ => 0,