You can now @destroy objects and players. Fine-tuning of misc. stuff also.

This commit is contained in:
Greg Taylor 2006-12-22 00:51:26 +00:00
parent 81d9eb313a
commit 6bb2be6068
7 changed files with 171 additions and 39 deletions

View file

@ -10,6 +10,7 @@ from apps.objects.models import Object, Attribute
from scheduler import Scheduler
import functions_db
import functions_general
import global_defines
class Server(dispatcher):
"""
@ -38,6 +39,7 @@ class Server(dispatcher):
self.bind(('', int(self.configvalue['site_port'])))
self.listen(100)
self.start_time = time.time()
print ' %s started on port %s.' % (self.configvalue['site_name'], self.configvalue['site_port'],)
print '-'*50