File tree 2 files changed +3
-3
lines changed
src/main/java/de/tubyoub/statusplugin
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 6
6
7
7
<groupId >de.tubyoub</groupId >
8
8
<artifactId >StatusPlugin</artifactId >
9
- <version >1.5</version >
9
+ <version >1.5.1 </version >
10
10
<packaging >jar</packaging >
11
11
12
12
<name >Tub's Status Plugin</name >
Original file line number Diff line number Diff line change 22
22
* This class extends JavaPlugin and represents the main entry point for the plugin.
23
23
*/
24
24
public class StatusPlugin extends JavaPlugin {
25
- private final String version = "1.5" ;
25
+ private final String version = "1.5.1 " ;
26
26
private final String project = "km0yAITg" ;
27
27
private int pluginId = 20463 ;
28
28
private StatusManager statusManager ;
@@ -54,6 +54,7 @@ public void onEnable() {
54
54
configManager .loadConfig ();
55
55
56
56
// Initialize the StatusManager and VersionChecker
57
+ this .statusManager = new StatusManager (this );
57
58
if (configManager .isCheckUpdate ()) {
58
59
versionInfo = VersionChecker .isNewVersionAvailable (version , project );
59
60
if (versionInfo .isNewVersionAvailable ) {
@@ -136,7 +137,6 @@ public void onEnable() {
136
137
}, 0L , 600L ); // 600 ticks = 30 seconds
137
138
}
138
139
getLogger ().info ("Tub's StatusPlugin successfully loaded" );
139
- getLogger ().warning (String .valueOf (this .getConfig ()));
140
140
}
141
141
142
142
/**
You can’t perform that action at this time.
0 commit comments