From 12fde472a22efd8fdc217095fcb93119f3e09958 Mon Sep 17 00:00:00 2001 From: Tobias Ottenweller Date: Sun, 19 May 2013 12:00:07 +0200 Subject: [PATCH] Fixed a typo. --- src/de/craftinc/gates/commands/BaseLocationCommand.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/de/craftinc/gates/commands/BaseLocationCommand.java b/src/de/craftinc/gates/commands/BaseLocationCommand.java index 348bc58..66b3228 100644 --- a/src/de/craftinc/gates/commands/BaseLocationCommand.java +++ b/src/de/craftinc/gates/commands/BaseLocationCommand.java @@ -10,7 +10,7 @@ public abstract class BaseLocationCommand extends BaseCommand protected Location getValidPlayerLocation() { // The player might stand in a half block or a sign or whatever - // Therefore we load som extra locations and blocks + // Therefore we load some extra locations and blocks Block playerBlock = player.getLocation().getBlock(); Block upBlock = playerBlock.getRelative(BlockFace.UP);