diff --git a/game/gamesrc/parents/examples/custom_basicobject.py b/game/gamesrc/parents/examples/custom_basicobject.py index b5817b1b47..7c07fec875 100644 --- a/game/gamesrc/parents/examples/custom_basicobject.py +++ b/game/gamesrc/parents/examples/custom_basicobject.py @@ -58,7 +58,7 @@ class CustomBasicObject(BasicObject): def at_after_move(self): """ - This hook is called just after the player has been successfully moved. + This hook is called just after the object has been successfully moved. """ pass diff --git a/src/script_parents/basicplayer.py b/src/script_parents/basicplayer.py index 4cf428b958..80f72322c3 100644 --- a/src/script_parents/basicplayer.py +++ b/src/script_parents/basicplayer.py @@ -47,7 +47,7 @@ class EvenniaBasicPlayer(object): def at_before_move(self, target_location): """ - This hook is called just before the object is moved. + This hook is called just before the player is moved. Input: target_location (obj): The location the player is about to move to. Return value: