Committin a 'working' checkpoint before I break more stuff.

This commit is contained in:
Greg Taylor 2008-06-15 19:06:31 +00:00
parent ccf078b5c8
commit d3808c1ea2
18 changed files with 494 additions and 444 deletions

View file

@ -6,9 +6,9 @@ something.
from traceback import format_exc
import time
from apps.objects.models import Object
import defines_global
import cmdtable
import functions_db
import functions_general
import functions_log
import functions_comsys
@ -23,7 +23,7 @@ def match_exits(pobject, searchstr):
See if we can find an input match to exits.
"""
exits = pobject.get_location().get_contents(filter_type=4)
return functions_db.list_search_object_namestr(exits, searchstr, match_type="exact")
return Object.objects.list_search_object_namestr(exits, searchstr, match_type="exact")
def parse_command(command_string):
"""