Rename height field of ObjectDefinition to length.

This commit is contained in:
Major-
2014-09-11 21:29:52 +01:00
parent 5ab6d749b5
commit c8cc7a5cd2
3 changed files with 13 additions and 14 deletions
+1 -1
View File
@@ -60,5 +60,5 @@ on :command, :objectinfo, RIGHTS_ADMIN do |player, command|
id = args[0].to_i
definition = ObjectDefinition.lookup(id)
player.send_message("Object #{id} is called #{definition.name} and its description is \"#{definition.description}\".")
player.send_message("Its width is #{definition.width} and its height is #{definition.height}.")
player.send_message("Its width is #{definition.width} and its length is #{definition.length}.")
end