Correct typo in ::objectinfo and print width and height, format command.rb.

This commit is contained in:
Major-
2014-09-11 21:24:40 +01:00
parent 238e6236a7
commit 57dc6c7c9c
2 changed files with 12 additions and 1 deletions
+10
View File
@@ -14,4 +14,14 @@ class Hash
keys.each { |key| return false unless has_key?(key) }
return true
end
end
class Player
# Returns whether or not the player's
def has_level(skill, level)
return skill_set.get_skill(skill).current_level >= level
end
end