Whoops, fixed some comment stuff.

This commit is contained in:
Greg Taylor 2007-07-10 15:34:36 +00:00
parent 9c57e1cf7a
commit 679ef8dc74

View file

@ -19,7 +19,7 @@ class BasicObject:
actor: (Object) Reference to the looker
"""
# Un-comment the line below for an example
#print "SCRIPT TEST: %s looked at %s." % (looker, self.source_obj)
#print "SCRIPT TEST: %s looked at %s." % (actor, self.source_obj)
pass
def a_get(self, actor):
@ -29,7 +29,7 @@ class BasicObject:
actor: (Object) Reference to the person who got the object
"""
# Un-comment the line below for an example
#print "SCRIPT TEST: %s got %s." % (looker, self.source_obj)
#print "SCRIPT TEST: %s got %s." % (actor, self.source_obj)
pass
def a_drop(self, actor):
@ -39,7 +39,7 @@ class BasicObject:
actor: (Object) Reference to the person who dropped the object
"""
# Un-comment the line below for an example
#print "SCRIPT TEST: %s got %s." % (looker, self.source_obj)
#print "SCRIPT TEST: %s got %s." % (actor, self.source_obj)
pass
def class_factory(source_obj):