From f60a981c65fe0d00fb09add401cdc2c8eed693d2 Mon Sep 17 00:00:00 2001 From: Kurt Date: Sun, 16 Apr 2017 22:37:50 -0700 Subject: [PATCH] Fix reload value reference As noted in post-close comments of #126 Thanks @sora10pls ! --- pk3DS/Subforms/ShinyRate.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pk3DS/Subforms/ShinyRate.cs b/pk3DS/Subforms/ShinyRate.cs index 9f93c7f..31b65f0 100644 --- a/pk3DS/Subforms/ShinyRate.cs +++ b/pk3DS/Subforms/ShinyRate.cs @@ -46,7 +46,7 @@ public ShinyRate() else { Util.Alert(".code.bin was already patched for shiny rate.", "Loaded existing value."); - NUD_Rerolls.Value = val; + NUD_Rerolls.Value = instruction.Value; } modified = true; }