Skip to content

Commit

Permalink
Fixed /land buy not aliasing /land claim
Browse files Browse the repository at this point in the history
  • Loading branch information
jcdesimp committed Mar 21, 2014
1 parent af6136e commit f49b42e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/com/jcdesimp/landlord/LandlordCommandExecutor.java
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ public boolean onCommand(CommandSender sender, Command cmd, String label, String
//landlord
return landlord(sender, args, label);

} else if(args[0].equalsIgnoreCase("help") || args[0].equalsIgnoreCase("buy")) {
} else if(args[0].equalsIgnoreCase("help")) {

//landlord claim
return landlord_help(sender, args, label);
Expand Down
3 changes: 1 addition & 2 deletions src/plugin.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: Landlord
main: com.jcdesimp.landlord.Landlord
version: 0.4
version: 0.5
author: Jcdesimp
authors: []
website: http://dev.bukkit.org/bukkit-plugins/landlord/
Expand Down Expand Up @@ -28,7 +28,6 @@ permissions:
landlord.player.*:
description: Gives access to default player commands.
children:
landlord.use: true
landlord.player.own: true
landlord.player.map: true
landlord.player.info: true
Expand Down

0 comments on commit f49b42e

Please sign in to comment.