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):