mirror of
https://github.com/Ellpeck/ActuallyAdditions.git
synced 2024-11-22 15:18:34 +01:00
More edition
This commit is contained in:
parent
a2000d8bb3
commit
41e2daa0be
1 changed files with 5 additions and 5 deletions
|
@ -97,19 +97,19 @@ public final class BookletUtils{
|
|||
|
||||
String version;
|
||||
String playerName = Minecraft.getMinecraft().thePlayer.getName();
|
||||
if(playerName.equals("dqmhose")){
|
||||
if(playerName.equalsIgnoreCase("dqmhose")){
|
||||
version = "Pants Edition";
|
||||
}
|
||||
else if(playerName.equals("TwoOfEight")){
|
||||
else if(playerName.equalsIgnoreCase("TwoOfEight") || playerName.equalsIgnoreCase("BootyToast")){
|
||||
version = "Illustrator's Edition";
|
||||
}
|
||||
else if(playerName.equals("KittyVanCat")){
|
||||
else if(playerName.equalsIgnoreCase("KittyVanCat")){
|
||||
version = "Cat's Edition";
|
||||
}
|
||||
else if(playerName.equals("canitzp")){
|
||||
else if(playerName.equalsIgnoreCase("canitzp")){
|
||||
version = "P's Edition";
|
||||
}
|
||||
else if(playerName.equals("Ellpeck") || Util.isDevVersion()){
|
||||
else if(playerName.equalsIgnoreCase("Ellpeck") || Util.isDevVersion()){
|
||||
version = "Dev's Edition";
|
||||
}
|
||||
else{
|
||||
|
|
Loading…
Reference in a new issue