From 679ef8dc74a5b6f0c204e6e534a4f9b1f69065ca Mon Sep 17 00:00:00 2001 From: Greg Taylor Date: Tue, 10 Jul 2007 15:34:36 +0000 Subject: [PATCH] Whoops, fixed some comment stuff. --- scripts/basicobject.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/scripts/basicobject.py b/scripts/basicobject.py index 3bb2b42d69..7cb03ad23f 100644 --- a/scripts/basicobject.py +++ b/scripts/basicobject.py @@ -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):