We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c7698ff commit c697112Copy full SHA for c697112
pom.xml
@@ -6,7 +6,7 @@
6
7
<groupId>xyz.theprogramsrc</groupId>
8
<artifactId>SuperCoreAPI</artifactId>
9
- <version>3.2.7</version>
+ <version>3.2.8_BETA1</version>
10
<packaging>jar</packaging>
11
12
<name>SuperCoreAPI</name>
src/main/java/xyz/theprogramsrc/supercoreapi/SuperPlugin.java
@@ -145,7 +145,7 @@ default void addDisableHook(Runnable runnable){
145
* @return Plugin messaging channel name
146
*/
147
default String getPluginMessagingChannelName(){
148
- return this.getPluginName() + ":messagingChannel";
+ return this.getPluginName().toLowerCase().replaceAll(" ", "") + ":messagingchannel";
149
}
150
151
/**
0 commit comments