Fixed issues with modules not saving through Modules submenu.
This commit is contained in:
parent
c12d3b0aa5
commit
38c3a9bdfd
BIN
sigIRCv2.jar
BIN
sigIRCv2.jar
Binary file not shown.
@ -238,6 +238,7 @@ public class BandoriModule extends Module{
|
||||
"Bandori"
|
||||
));
|
||||
sigIRC.bandorimodule_enabled=true;
|
||||
sigIRC.config.setBoolean("Module_bandori_Enabled", sigIRC.bandorimodule_enabled);
|
||||
sigIRC.config.saveProperties();
|
||||
}
|
||||
public static void unloadModule() {
|
||||
@ -247,6 +248,7 @@ public class BandoriModule extends Module{
|
||||
}
|
||||
}
|
||||
sigIRC.bandorimodule_enabled=false;
|
||||
sigIRC.config.setBoolean("Module_bandori_Enabled", sigIRC.bandorimodule_enabled);
|
||||
sigIRC.config.saveProperties();
|
||||
}
|
||||
|
||||
|
||||
@ -58,6 +58,7 @@ public class ChatLogModule extends Module{
|
||||
"Chat Log"
|
||||
));
|
||||
sigIRC.chatlogmodule_enabled=true;
|
||||
sigIRC.config.setBoolean("Module_chatlog_Enabled", sigIRC.chatlogmodule_enabled);
|
||||
sigIRC.config.saveProperties();
|
||||
}
|
||||
public static void unloadModule() {
|
||||
@ -67,6 +68,7 @@ public class ChatLogModule extends Module{
|
||||
}
|
||||
}
|
||||
sigIRC.chatlogmodule_enabled=false;
|
||||
sigIRC.config.setBoolean("Module_chatlog_Enabled", sigIRC.chatlogmodule_enabled);
|
||||
sigIRC.config.saveProperties();
|
||||
}
|
||||
|
||||
|
||||
@ -116,6 +116,7 @@ public class ControllerModule extends Module{
|
||||
"Controller"
|
||||
));
|
||||
sigIRC.controllermodule_enabled=true;
|
||||
sigIRC.config.setBoolean("Module_controller_Enabled", sigIRC.controllermodule_enabled);
|
||||
sigIRC.config.saveProperties();
|
||||
}
|
||||
public static void unloadModule() {
|
||||
@ -125,6 +126,7 @@ public class ControllerModule extends Module{
|
||||
}
|
||||
}
|
||||
sigIRC.controllermodule_enabled=false;
|
||||
sigIRC.config.setBoolean("Module_controller_Enabled", sigIRC.controllermodule_enabled);
|
||||
sigIRC.config.saveProperties();
|
||||
}
|
||||
|
||||
|
||||
@ -89,6 +89,7 @@ public class DDRStepModule extends Module{
|
||||
"DDR Step"
|
||||
));
|
||||
sigIRC.ddrstepmodule_enabled=true;
|
||||
sigIRC.config.setBoolean("Module_ddrstep_Enabled", sigIRC.ddrstepmodule_enabled);
|
||||
sigIRC.config.saveProperties();
|
||||
}
|
||||
public static void unloadModule() {
|
||||
@ -98,6 +99,7 @@ public class DDRStepModule extends Module{
|
||||
}
|
||||
}
|
||||
sigIRC.ddrstepmodule_enabled=false;
|
||||
sigIRC.config.setBoolean("Module_ddrstep_Enabled", sigIRC.ddrstepmodule_enabled);
|
||||
sigIRC.config.saveProperties();
|
||||
}
|
||||
|
||||
|
||||
@ -196,6 +196,7 @@ public class RabiRaceModule extends Module{
|
||||
"Rabi Race"
|
||||
));
|
||||
sigIRC.rabiracemodule_enabled=true;
|
||||
sigIRC.config.setBoolean("Module_rabirace_Enabled", sigIRC.rabiracemodule_enabled);
|
||||
sigIRC.config.saveProperties();
|
||||
}
|
||||
public static void unloadModule() {
|
||||
@ -205,6 +206,7 @@ public class RabiRaceModule extends Module{
|
||||
}
|
||||
}
|
||||
sigIRC.rabiracemodule_enabled=false;
|
||||
sigIRC.config.setBoolean("Module_rabirace_Enabled", sigIRC.rabiracemodule_enabled);
|
||||
sigIRC.config.saveProperties();
|
||||
}
|
||||
|
||||
|
||||
@ -136,6 +136,7 @@ public class RabiRibiModule extends Module{
|
||||
"Rabi Ribi"
|
||||
));
|
||||
sigIRC.rabiribimodule_enabled=true;
|
||||
sigIRC.config.setBoolean("Module_rabiribi_Enabled", sigIRC.rabiribimodule_enabled);
|
||||
sigIRC.config.saveProperties();
|
||||
}
|
||||
public static void unloadModule() {
|
||||
@ -145,6 +146,7 @@ public class RabiRibiModule extends Module{
|
||||
}
|
||||
}
|
||||
sigIRC.rabiribimodule_enabled=false;
|
||||
sigIRC.config.setBoolean("Module_rabiribi_Enabled", sigIRC.rabiribimodule_enabled);
|
||||
sigIRC.config.saveProperties();
|
||||
}
|
||||
|
||||
|
||||
@ -120,6 +120,7 @@ public class TouhouMotherModule extends Module implements ActionListener{
|
||||
"Touhou Mother"
|
||||
));
|
||||
sigIRC.touhoumothermodule_enabled=true;
|
||||
sigIRC.config.setBoolean("Module_touhoumother_Enabled", sigIRC.touhoumothermodule_enabled);
|
||||
sigIRC.config.saveProperties();
|
||||
}
|
||||
public static void unloadModule() {
|
||||
@ -129,6 +130,7 @@ public class TouhouMotherModule extends Module implements ActionListener{
|
||||
}
|
||||
}
|
||||
sigIRC.touhoumothermodule_enabled=false;
|
||||
sigIRC.config.setBoolean("Module_touhoumother_Enabled", sigIRC.touhoumothermodule_enabled);
|
||||
sigIRC.config.saveProperties();
|
||||
}
|
||||
|
||||
|
||||
@ -140,6 +140,7 @@ public class TwitchModule extends Module{
|
||||
"Twitch"
|
||||
));
|
||||
sigIRC.twitchmodule_enabled=true;
|
||||
sigIRC.config.setBoolean("Module_twitch_Enabled", sigIRC.twitchmodule_enabled);
|
||||
sigIRC.config.saveProperties();
|
||||
}
|
||||
public static void unloadModule() {
|
||||
@ -149,6 +150,7 @@ public class TwitchModule extends Module{
|
||||
}
|
||||
}
|
||||
sigIRC.twitchmodule_enabled=false;
|
||||
sigIRC.config.setBoolean("Module_twitch_Enabled", sigIRC.twitchmodule_enabled);
|
||||
sigIRC.config.saveProperties();
|
||||
}
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user