Skip to content

Commit

Permalink
1.0.1.1 - small but important fix
Browse files Browse the repository at this point in the history
  • Loading branch information
deli73 committed Jan 2, 2018
1 parent 9d8dbb4 commit 7c60a38
Show file tree
Hide file tree
Showing 8 changed files with 6 additions and 6 deletions.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
2 changes: 1 addition & 1 deletion project.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ ext {
projectName = 'TP+'

useElytraVersionFormat = false
version = '1.12.2-1.0.1.0'
version = '1.12.2-1.0.1.1'

concreteVersion = '0.3.4-SNAPSHOT'
concreteModules = [ 'common' ]
Expand Down
6 changes: 3 additions & 3 deletions src/main/java/com/elytradev/tpp/CommandTPP.java
Original file line number Diff line number Diff line change
Expand Up @@ -62,10 +62,10 @@ else if(args.length == 2) {
}

if(EntitySelector.isSelector(args[0])){
destination = EntitySelector.matchOneEntity(sender,args[0],Entity.class);
destination = EntitySelector.matchOneEntity(sender,args[1],Entity.class);
}
else{
destination = server.getPlayerList().getPlayerByUsername(args[0]);
destination = server.getPlayerList().getPlayerByUsername(args[1]);
}
if(destination==null){
ITextComponent component = new TextComponentString(TextFormatting.RED + "entity not found: " + args[0]);
Expand Down Expand Up @@ -141,7 +141,7 @@ public static void teleportToDimension(EntityPlayer player, int dimension, doubl

public String getUsage(ICommandSender sender)
{
return TPPlus.modId + "commands.tpp.usage";
return TPPlus.modId + ".commands.tpp.usage";
}

/**
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/elytradev/tpp/TPPlus.java
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
public class TPPlus {
static final String modId = "tpp";
static final String name = "TP+";
static final String version = "1.0.1.0";
static final String version = "1.0.1.1";

//@Mod.Instance(modId)
//public static TPPlus instance;
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/mcmod.info
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"modid": "tpp",
"name": "TP+",
"description": "",
"version": "1.12.2-1.0.1.0",
"version": "1.12.2-1.0.1.1",
"mcversion": "1.12.2",
"url": "",
"updateUrl": "",
Expand Down

0 comments on commit 7c60a38

Please sign in to comment.