From 64b65ba3cedb92a69eaa055fd620fece43cb9bc9 Mon Sep 17 00:00:00 2001 From: reidlab Date: Fri, 15 Sep 2023 17:28:17 -0700 Subject: [PATCH] demon difficulty was wrong, updated!111 --- src/helpers/difficulty.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/src/helpers/difficulty.rs b/src/helpers/difficulty.rs index 6209bfc..aec9733 100644 --- a/src/helpers/difficulty.rs +++ b/src/helpers/difficulty.rs @@ -77,7 +77,6 @@ impl DemonDifficulty { 2 => DemonDifficulty::Hard, 3 => DemonDifficulty::Insane, 4 => DemonDifficulty::Extreme, - 5 => DemonDifficulty::Insane, _ => panic!("invalid demon difficulty") } }