Skip to content

Commit 82711e3

Browse files
committed
Refactor ADHDMC to Simplexity
1 parent 0cac55d commit 82711e3

25 files changed

Lines changed: 86 additions & 89 deletions

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
55
<modelVersion>4.0.0</modelVersion>
66

7-
<groupId>ADHDMC</groupId>
7+
<groupId>Simplexity</groupId>
88
<artifactId>SimplePrefixes</artifactId>
99
<version>1.1.0</version>
1010
<packaging>jar</packaging>

src/main/java/adhdmc/simpleprefixes/SimplePrefixes.java renamed to src/main/java/simplexity/simpleprefixes/SimplePrefixes.java

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
1-
package adhdmc.simpleprefixes;
1+
package simplexity.simpleprefixes;
22

3-
import adhdmc.simpleprefixes.command.CommandHandler;
4-
import adhdmc.simpleprefixes.command.subcommand.*;
5-
import adhdmc.simpleprefixes.config.Config;
6-
import adhdmc.simpleprefixes.config.Locale;
7-
import adhdmc.simpleprefixes.config.PrefixConfig;
8-
import adhdmc.simpleprefixes.dependency.PAPIExpansion;
9-
import adhdmc.simpleprefixes.gui.chest.listener.PrefixMenuListener;
10-
import adhdmc.simpleprefixes.prefix.Prefix;
11-
import adhdmc.simpleprefixes.prefix.PrefixUtil;
3+
import simplexity.simpleprefixes.command.CommandHandler;
4+
import simplexity.simpleprefixes.command.subcommand.*;
5+
import simplexity.simpleprefixes.config.Config;
6+
import simplexity.simpleprefixes.config.Locale;
7+
import simplexity.simpleprefixes.config.PrefixConfig;
8+
import simplexity.simpleprefixes.dependency.PAPIExpansion;
9+
import simplexity.simpleprefixes.gui.chest.listener.PrefixMenuListener;
10+
import simplexity.simpleprefixes.prefix.Prefix;
11+
import simplexity.simpleprefixes.prefix.PrefixUtil;
1212
import net.kyori.adventure.text.minimessage.MiniMessage;
1313
import net.kyori.adventure.text.minimessage.tag.resolver.TagResolver;
1414
import net.kyori.adventure.text.minimessage.tag.standard.StandardTags;

src/main/java/adhdmc/simpleprefixes/command/CommandHandler.java renamed to src/main/java/simplexity/simpleprefixes/command/CommandHandler.java

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
1-
package adhdmc.simpleprefixes.command;
1+
package simplexity.simpleprefixes.command;
22

3-
import adhdmc.simpleprefixes.util.Message;
4-
import adhdmc.simpleprefixes.util.Permission;
5-
import net.kyori.adventure.text.minimessage.MiniMessage;
3+
import simplexity.simpleprefixes.util.Message;
4+
import simplexity.simpleprefixes.util.Permission;
65
import org.bukkit.command.Command;
76
import org.bukkit.command.CommandExecutor;
87
import org.bukkit.command.CommandSender;

src/main/java/adhdmc/simpleprefixes/command/SubCommand.java renamed to src/main/java/simplexity/simpleprefixes/command/SubCommand.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
package adhdmc.simpleprefixes.command;
1+
package simplexity.simpleprefixes.command;
22

3-
import adhdmc.simpleprefixes.util.Permission;
3+
import simplexity.simpleprefixes.util.Permission;
44
import org.bukkit.command.CommandSender;
55

66
import java.util.List;

src/main/java/adhdmc/simpleprefixes/command/subcommand/GuiCommand.java renamed to src/main/java/simplexity/simpleprefixes/command/subcommand/GuiCommand.java

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
package adhdmc.simpleprefixes.command.subcommand;
1+
package simplexity.simpleprefixes.command.subcommand;
22

3-
import adhdmc.simpleprefixes.command.SubCommand;
4-
import adhdmc.simpleprefixes.gui.chest.PrefixMenu;
5-
import adhdmc.simpleprefixes.util.Message;
6-
import adhdmc.simpleprefixes.util.Permission;
3+
import simplexity.simpleprefixes.command.SubCommand;
4+
import simplexity.simpleprefixes.gui.chest.PrefixMenu;
5+
import simplexity.simpleprefixes.util.Message;
6+
import simplexity.simpleprefixes.util.Permission;
77
import org.bukkit.command.CommandSender;
88
import org.bukkit.entity.Player;
99

src/main/java/adhdmc/simpleprefixes/command/subcommand/InfoCommand.java renamed to src/main/java/simplexity/simpleprefixes/command/subcommand/InfoCommand.java

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
package adhdmc.simpleprefixes.command.subcommand;
1+
package simplexity.simpleprefixes.command.subcommand;
22

3-
import adhdmc.simpleprefixes.SimplePrefixes;
4-
import adhdmc.simpleprefixes.command.SubCommand;
5-
import adhdmc.simpleprefixes.util.Message;
6-
import adhdmc.simpleprefixes.util.Permission;
7-
import adhdmc.simpleprefixes.prefix.Prefix;
3+
import simplexity.simpleprefixes.SimplePrefixes;
4+
import simplexity.simpleprefixes.command.SubCommand;
5+
import simplexity.simpleprefixes.util.Message;
6+
import simplexity.simpleprefixes.util.Permission;
7+
import simplexity.simpleprefixes.prefix.Prefix;
88
import net.kyori.adventure.text.Component;
99
import net.kyori.adventure.text.minimessage.tag.resolver.Placeholder;
1010
import org.bukkit.command.CommandSender;

src/main/java/adhdmc/simpleprefixes/command/subcommand/ReloadCommand.java renamed to src/main/java/simplexity/simpleprefixes/command/subcommand/ReloadCommand.java

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
package adhdmc.simpleprefixes.command.subcommand;
1+
package simplexity.simpleprefixes.command.subcommand;
22

3-
import adhdmc.simpleprefixes.SimplePrefixes;
4-
import adhdmc.simpleprefixes.command.SubCommand;
5-
import adhdmc.simpleprefixes.util.Message;
6-
import adhdmc.simpleprefixes.util.Permission;
3+
import simplexity.simpleprefixes.SimplePrefixes;
4+
import simplexity.simpleprefixes.command.SubCommand;
5+
import simplexity.simpleprefixes.util.Message;
6+
import simplexity.simpleprefixes.util.Permission;
77
import org.bukkit.command.CommandSender;
88

99
import java.util.ArrayList;

src/main/java/adhdmc/simpleprefixes/command/subcommand/ResetCommand.java renamed to src/main/java/simplexity/simpleprefixes/command/subcommand/ResetCommand.java

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
package adhdmc.simpleprefixes.command.subcommand;
1+
package simplexity.simpleprefixes.command.subcommand;
22

3-
import adhdmc.simpleprefixes.command.SubCommand;
4-
import adhdmc.simpleprefixes.util.Message;
5-
import adhdmc.simpleprefixes.util.Permission;
6-
import adhdmc.simpleprefixes.prefix.PrefixUtil;
3+
import simplexity.simpleprefixes.command.SubCommand;
4+
import simplexity.simpleprefixes.util.Message;
5+
import simplexity.simpleprefixes.util.Permission;
6+
import simplexity.simpleprefixes.prefix.PrefixUtil;
77
import org.bukkit.command.CommandSender;
88
import org.bukkit.entity.Player;
99

src/main/java/adhdmc/simpleprefixes/command/subcommand/SetCommand.java renamed to src/main/java/simplexity/simpleprefixes/command/subcommand/SetCommand.java

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
1-
package adhdmc.simpleprefixes.command.subcommand;
1+
package simplexity.simpleprefixes.command.subcommand;
22

3-
import adhdmc.simpleprefixes.command.SubCommand;
4-
import adhdmc.simpleprefixes.prefix.Prefix;
5-
import adhdmc.simpleprefixes.prefix.PrefixUtil;
6-
import adhdmc.simpleprefixes.prefix.RequirementUtil;
7-
import adhdmc.simpleprefixes.util.*;
83
import org.bukkit.command.CommandSender;
94
import org.bukkit.entity.Player;
5+
import simplexity.simpleprefixes.command.SubCommand;
6+
import simplexity.simpleprefixes.prefix.Prefix;
7+
import simplexity.simpleprefixes.prefix.PrefixUtil;
8+
import simplexity.simpleprefixes.prefix.RequirementUtil;
9+
import simplexity.simpleprefixes.util.Message;
10+
import simplexity.simpleprefixes.util.Permission;
1011

1112
import java.util.ArrayList;
1213
import java.util.List;

src/main/java/adhdmc/simpleprefixes/config/Config.java renamed to src/main/java/simplexity/simpleprefixes/config/Config.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
package adhdmc.simpleprefixes.config;
1+
package simplexity.simpleprefixes.config;
22

3-
import adhdmc.simpleprefixes.SimplePrefixes;
4-
import adhdmc.simpleprefixes.util.Message;
3+
import simplexity.simpleprefixes.SimplePrefixes;
4+
import simplexity.simpleprefixes.util.Message;
55
import org.bukkit.configuration.file.FileConfiguration;
66

77

0 commit comments

Comments
 (0)