#
# file:: cmd_weather.rb
# This source code copyright (C) 2009 Craig Smith
# All rights reserved.
#
# Released under the terms of the TeensyMUD Public License
# See LICENSE file for additional information.
#
module Cmd
bindtextdomain("cmd")
# The weather command
def cmd_weather(args)
if get_object(location).has_attribute? :inside and not world.can_build? id
sendto _("You are inside.")
else
sendto(world.climate.weather)
end
end
end