mirror of
https://github.com/darverdevs/PluginInstaller.git
synced 2024-11-21 17:06:03 -08:00
Final commit before merge
This commit is contained in:
parent
87723670c0
commit
e5b66214c0
Binary file not shown.
|
@ -17,7 +17,7 @@ public class PluginList {
|
||||||
for (int i = 1; i < 8; i++) {
|
for (int i = 1; i < 8; i++) {
|
||||||
int Spaces = 21-AlphaPluginList[i-1].length();
|
int Spaces = 21-AlphaPluginList[i-1].length();
|
||||||
List<String> spaces = new ArrayList<>();
|
List<String> spaces = new ArrayList<>();
|
||||||
for (int forInt = 0; i < Spaces; i++) {
|
for (int forInt = 0; forInt < Spaces; forInt++) {
|
||||||
spaces.add(" ");
|
spaces.add(" ");
|
||||||
}
|
}
|
||||||
sender.sendMessage(i+". "+ AlphaPluginList[i-1] + "" + Utils.ListToString(spaces) + "" +SecondCollumn + ". " + AlphaPluginList[SecondCollumn-1]);
|
sender.sendMessage(i+". "+ AlphaPluginList[i-1] + "" + Utils.ListToString(spaces) + "" +SecondCollumn + ". " + AlphaPluginList[SecondCollumn-1]);
|
||||||
|
@ -34,8 +34,8 @@ public class PluginList {
|
||||||
// List -------------------------------------------------------------
|
// List -------------------------------------------------------------
|
||||||
int SecondCollumn = 22;
|
int SecondCollumn = 22;
|
||||||
for (int i = 15; i < 22; i++) {
|
for (int i = 15; i < 22; i++) {
|
||||||
String Col1 = "";
|
String Col1;
|
||||||
String Col2 = "";
|
String Col2;
|
||||||
|
|
||||||
// Null checkers for elements in the Array
|
// Null checkers for elements in the Array
|
||||||
try {
|
try {
|
||||||
|
@ -52,10 +52,9 @@ public class PluginList {
|
||||||
|
|
||||||
int Spaces = 21-AlphaPluginList[i-1].length();
|
int Spaces = 21-AlphaPluginList[i-1].length();
|
||||||
List<String> spaces = new ArrayList<>();
|
List<String> spaces = new ArrayList<>();
|
||||||
for (int forInt = 0; i < Spaces; i++) {
|
for (int forInt = 0; forInt < Spaces; forInt++) {
|
||||||
spaces.add(" ");
|
spaces.add(" ");
|
||||||
}
|
}
|
||||||
|
|
||||||
sender.sendMessage(i+". "+ Col1 + "" + Utils.ListToString(spaces) + "" + SecondCollumn + ". " + Col2);
|
sender.sendMessage(i+". "+ Col1 + "" + Utils.ListToString(spaces) + "" + SecondCollumn + ". " + Col2);
|
||||||
SecondCollumn++;
|
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<>();
|
List<String> spaces = new ArrayList<>();
|
||||||
for (int forInt = 0; i < Spaces; i++) {
|
for (int forInt = 0; forInt < Spaces; forInt++) {
|
||||||
spaces.add(" ");
|
spaces.add(" ");
|
||||||
}
|
}
|
||||||
|
|
||||||
sender.sendMessage(i+". "+ Col31 + "" + Utils.ListToString(spaces) + "" + SecondCollumn + ". " + Col32);
|
sender.sendMessage(i+". "+ Col31 + "" + Utils.ListToString(spaces) + "" + SecondCollumn + ". " + Col32);
|
||||||
SecondCollumn++;
|
SecondCollumn++;
|
||||||
}
|
}
|
||||||
|
|
Binary file not shown.
BIN
target/classes/tech/nully/PluginInstaller/Utils.class
Normal file
BIN
target/classes/tech/nully/PluginInstaller/Utils.class
Normal file
Binary file not shown.
Loading…
Reference in New Issue
Block a user