From 4094f8b5fd26ede9a9c6f9006ae737e5383053c5 Mon Sep 17 00:00:00 2001 From: sir-wilhelm Date: Fri, 17 Apr 2020 11:28:58 -0500 Subject: [PATCH] Fixed the name of the "strong poison". --- SmartHunter/Game/Config/LocalizationConfig.cs | 2 +- SmartHunter/Game/Config/PlayerDataConfig.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/SmartHunter/Game/Config/LocalizationConfig.cs b/SmartHunter/Game/Config/LocalizationConfig.cs index f3ae8087..27fcbcdf 100644 --- a/SmartHunter/Game/Config/LocalizationConfig.cs +++ b/SmartHunter/Game/Config/LocalizationConfig.cs @@ -212,7 +212,7 @@ public class LocalizationConfig { "LOC_STATUS_0", "Status 0" }, { "LOC_STATUS_EFFECT_UNKNOWN", "Unknown Status Effect" }, { "LOC_STATUS_EFFECT_POISON", "Poison" }, - { "LOC_STATUS_EFFECT_VENOM", "Venom"}, + { "LOC_STATUS_EFFECT_NOXIOUS_POISON", "Noxious Poison"}, { "LOC_STATUS_EFFECT_PARALYSIS", "Paralysis" }, { "LOC_STATUS_EFFECT_SLEEP", "Sleep" }, { "LOC_STATUS_EFFECT_BLAST", "Blast" }, diff --git a/SmartHunter/Game/Config/PlayerDataConfig.cs b/SmartHunter/Game/Config/PlayerDataConfig.cs index de43d452..255d0845 100644 --- a/SmartHunter/Game/Config/PlayerDataConfig.cs +++ b/SmartHunter/Game/Config/PlayerDataConfig.cs @@ -91,7 +91,7 @@ private static string indexToHexStr(int index, ulong baseOffset) new StatusEffectConfig("Debuff", "LOC_STATUS_EFFECT_POISON", MemorySource.Base, indexToHexStrNoOffset(375)), - new StatusEffectConfig("Debuff", "LOC_STATUS_EFFECT_VENOM", MemorySource.Base, indexToHexStrNoOffset(376)), + new StatusEffectConfig("Debuff", "LOC_STATUS_EFFECT_NOXIOUS_POISON", MemorySource.Base, indexToHexStrNoOffset(376)), new StatusEffectConfig("Debuff", "LOC_STATUS_EFFECT_FIREBLIGHT", MemorySource.Base, indexToHexStrNoOffset(379)), new StatusEffectConfig("Debuff", "LOC_STATUS_EFFECT_THUNDERBLIGHT", MemorySource.Base, indexToHexStrNoOffset(380)), new StatusEffectConfig("Debuff", "LOC_STATUS_EFFECT_WATERBLIGHT", MemorySource.Base, indexToHexStrNoOffset(381)),