mirror of
https://github.com/songoda/SongodaCore.git
synced 2024-11-26 20:16:18 +01:00
text: Update references to Craftaro with Songoda in strings
This commit is contained in:
parent
9b9c8fb087
commit
69c4628c63
@ -154,7 +154,7 @@ public abstract class SongodaPlugin extends JavaPlugin {
|
||||
|
||||
console.sendMessage(" "); // blank line to separate chatter
|
||||
console.sendMessage(ChatColor.GREEN + "=============================");
|
||||
console.sendMessage(String.format("%s%s %s by %sCraftaro <3!", ChatColor.GRAY, getDescription().getName(), getDescription().getVersion(), ChatColor.DARK_PURPLE));
|
||||
console.sendMessage(String.format("%s%s %s by %sSongoda <3!", ChatColor.GRAY, getDescription().getName(), getDescription().getVersion(), ChatColor.DARK_PURPLE));
|
||||
console.sendMessage(String.format("%sAction: %s%s%s...", ChatColor.GRAY, ChatColor.GREEN, "Enabling", ChatColor.GRAY));
|
||||
|
||||
try {
|
||||
@ -201,7 +201,7 @@ public abstract class SongodaPlugin extends JavaPlugin {
|
||||
|
||||
console.sendMessage(" "); // blank line to separate chatter
|
||||
console.sendMessage(ChatColor.GREEN + "=============================");
|
||||
console.sendMessage(String.format("%s%s %s by %sCraftaro <3!", ChatColor.GRAY,
|
||||
console.sendMessage(String.format("%s%s %s by %sSongoda <3!", ChatColor.GRAY,
|
||||
getDescription().getName(), getDescription().getVersion(), ChatColor.DARK_PURPLE));
|
||||
console.sendMessage(String.format("%sAction: %s%s%s...", ChatColor.GRAY,
|
||||
ChatColor.RED, "Disabling", ChatColor.GRAY));
|
||||
|
@ -65,7 +65,7 @@ public class MainCommand extends AbstractCommand {
|
||||
.sendTo(sender);
|
||||
}
|
||||
|
||||
sender.sendMessage(ChatColor.DARK_GRAY + "- " + ChatColor.YELLOW + "/craftaro" + ChatColor.GRAY + " - Opens the Craftaro plugin GUI");
|
||||
sender.sendMessage(ChatColor.DARK_GRAY + "- " + ChatColor.YELLOW + "/songoda" + ChatColor.GRAY + " - Opens the Songoda plugin GUI");
|
||||
sender.sendMessage("");
|
||||
|
||||
if (nestedCommands != null) {
|
||||
|
@ -24,7 +24,7 @@ public class SongodaCoreCommand extends AbstractCommand {
|
||||
|
||||
guiManager.showGUI((Player) sender, new SongodaCoreOverviewGUI());
|
||||
} else {
|
||||
sender.sendMessage("/craftaro diag");
|
||||
sender.sendMessage("/songoda diag");
|
||||
}
|
||||
|
||||
return ReturnType.SUCCESS;
|
||||
@ -37,7 +37,7 @@ public class SongodaCoreCommand extends AbstractCommand {
|
||||
|
||||
@Override
|
||||
public String getSyntax() {
|
||||
return "/craftaro";
|
||||
return "/songoda";
|
||||
}
|
||||
|
||||
@Override
|
||||
|
@ -36,7 +36,7 @@ public class SongodaCoreDiagCommand extends AbstractCommand {
|
||||
|
||||
@Override
|
||||
public String getSyntax() {
|
||||
return "/craftaro diag";
|
||||
return "/songoda diag";
|
||||
}
|
||||
|
||||
@Override
|
||||
@ -47,7 +47,7 @@ public class SongodaCoreDiagCommand extends AbstractCommand {
|
||||
@Override
|
||||
protected ReturnType runCommand(CommandSender sender, String... args) {
|
||||
sender.sendMessage("");
|
||||
sender.sendMessage("Craftaro Diagnostics Information");
|
||||
sender.sendMessage("Songoda Diagnostics Information");
|
||||
sender.sendMessage("");
|
||||
sender.sendMessage("Plugins:");
|
||||
|
||||
|
@ -16,7 +16,7 @@ final class SongodaCoreOverviewGUI extends Gui {
|
||||
// could do pages, too, but don't think we'll have that many at a time for a while
|
||||
int max = (int) Math.ceil(plugins.size() / 9.);
|
||||
setRows(max);
|
||||
setTitle("Craftaro Plugins");
|
||||
setTitle("Songoda Plugins");
|
||||
|
||||
// TODO: this could use some decorating
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user