From c784a2b6f2f2597435f4fcd1fd2438d00ad94f9a Mon Sep 17 00:00:00 2001 From: AdAstra-LD <76622070+AdAstra-LD@users.noreply.github.com> Date: Thu, 19 Dec 2024 23:24:43 +0100 Subject: [PATCH] Fixed some Learnset Editor static attributes --- DS_Map/LearnsetEditor.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/DS_Map/LearnsetEditor.cs b/DS_Map/LearnsetEditor.cs index e9d8c60..817bd4e 100644 --- a/DS_Map/LearnsetEditor.cs +++ b/DS_Map/LearnsetEditor.cs @@ -28,8 +28,8 @@ public partial class LearnsetEditor : Form { private int currentLoadedId = 0; private LearnsetData currentLoadedFile = null; - private static bool dirty = false; - private static readonly string formName = "Learnset Editor"; + private bool dirty = false; + private readonly string formName = "Learnset Editor"; public LearnsetEditor(string[] moveNames, Control parent, PokemonEditor pokeEditor) { this.moveNames = moveNames;