Final commit before merge

This commit is contained in:
Fangoboyo 2022-06-16 16:41:27 -07:00
parent 87723670c0
commit e5b66214c0
4 changed files with 9 additions and 11 deletions

View File

@ -17,7 +17,7 @@ public class PluginList {
for (int i = 1; i < 8; i++) {
int Spaces = 21-AlphaPluginList[i-1].length();
List<String> spaces = new ArrayList<>();
for (int forInt = 0; i < Spaces; i++) {
for (int forInt = 0; forInt < Spaces; forInt++) {
spaces.add(" ");
}
sender.sendMessage(i+". "+ AlphaPluginList[i-1] + "" + Utils.ListToString(spaces) + "" +SecondCollumn + ". " + AlphaPluginList[SecondCollumn-1]);
@ -34,8 +34,8 @@ public class PluginList {
// List -------------------------------------------------------------
int SecondCollumn = 22;
for (int i = 15; i < 22; i++) {
String Col1 = "";
String Col2 = "";
String Col1;
String Col2;
// Null checkers for elements in the Array
try {
@ -52,10 +52,9 @@ public class PluginList {
int Spaces = 21-AlphaPluginList[i-1].length();
List<String> spaces = new ArrayList<>();
for (int forInt = 0; i < Spaces; i++) {
for (int forInt = 0; forInt < Spaces; forInt++) {
spaces.add(" ");
}
sender.sendMessage(i+". "+ Col1 + "" + Utils.ListToString(spaces) + "" + SecondCollumn + ". " + Col2);
SecondCollumn++;
}
@ -87,12 +86,11 @@ public class PluginList {
}
// _________________________________________
int Spaces = 21-AlphaPluginList[i-1].length();
int Spaces = 21-Col31.length();
List<String> spaces = new ArrayList<>();
for (int forInt = 0; i < Spaces; i++) {
for (int forInt = 0; forInt < Spaces; forInt++) {
spaces.add(" ");
}
sender.sendMessage(i+". "+ Col31 + "" + Utils.ListToString(spaces) + "" + SecondCollumn + ". " + Col32);
SecondCollumn++;
}

Binary file not shown.