From 1ca3d3b27f59fe26183393bc7c8bd9a0dc42f285 Mon Sep 17 00:00:00 2001 From: Martin Michelsen Date: Sun, 29 Oct 2023 10:42:02 -0700 Subject: [PATCH] fix Anti max level on v2 --- src/ItemParameterTable.cc | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/ItemParameterTable.cc b/src/ItemParameterTable.cc index a58609ec..9697c7e7 100644 --- a/src/ItemParameterTable.cc +++ b/src/ItemParameterTable.cc @@ -554,8 +554,6 @@ uint8_t ItemParameterTable::get_max_tech_level(uint8_t char_class, uint8_t tech_ if (this->offsets_v2) { if ((tech_num == 14) || (tech_num == 17)) { // Ryuker or Reverser return 0; - } else if (tech_num == 16) { // Anti - return 7; } else { return ((char_class == 6) || (char_class == 7) || (char_class == 8) || (char_class == 10)) ? 29 : 14; }