Fix ::pos command.

This commit is contained in:
Major-
2014-08-08 02:59:49 +01:00
parent dbdfd067c6
commit 42131dcdaf
+1 -1
View File
@@ -4,7 +4,7 @@ java_import 'org.apollo.game.model.Position'
# Sends the player's position.
on :command, :pos, RIGHTS_MOD do |player, command|
player.send_message('You are at: #{player.position}.')
player.send_message("You are at: #{player.position}.")
end
# Teleports the player to the specified position.