Skip to content

Commit

Permalink
1.5 Release
Browse files Browse the repository at this point in the history
  • Loading branch information
ryandw11 committed Jun 29, 2020
1 parent bf65478 commit 30f2bec
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/com/ryandw11/structure/commands/SCommand.java
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ else if(args.length == 2 && args[0].equalsIgnoreCase("createschem")){
return true;
}
Player p = (Player) sender;
String name = args[1];
String name = args[1].replace(".schem", "");
SchematicHandeler handeler = new SchematicHandeler();
if(handeler.createSchematic(name, p, p.getWorld())){
p.sendMessage(ChatColor.GREEN + "Successfully created a schematic with the name of " + ChatColor.GOLD + name + ChatColor.GREEN + "!");
Expand Down
2 changes: 1 addition & 1 deletion src/plugin.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: CustomStructures
version: 1.5-RC1
version: 1.5
main: com.ryandw11.structure.CustomStructures
author: Ryandw11
description: A plugin which allows you to spawn in custom structures!
Expand Down

0 comments on commit 30f2bec

Please sign in to comment.