#
# file:: cmd_dbsave.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")
# Saves the games DB
def cmd_dbsave(args)
log.info "(GC) Saving World..."
Engine.instance.db.save
sendto _("World Saved.")
end
end