From ead595c2df8965f2bda32a87bdd7e360b4624fac Mon Sep 17 00:00:00 2001 From: Griatch Date: Wed, 6 Nov 2013 20:57:37 +0100 Subject: [PATCH] Fixed a minor typo. Resolves Issue 432. --- game/gamesrc/objects/examples/red_button.py | 2 +- src/utils/dummyrunner/dummyrunner_actions.py | 24 +++++++++++++------- 2 files changed, 17 insertions(+), 9 deletions(-) diff --git a/game/gamesrc/objects/examples/red_button.py b/game/gamesrc/objects/examples/red_button.py index ef8acb2ec5..a84ba7753e 100644 --- a/game/gamesrc/objects/examples/red_button.py +++ b/game/gamesrc/objects/examples/red_button.py @@ -8,7 +8,7 @@ Create this button with @create/drop examples.red_button.RedButton -Note that if you must drop the button before you can see its messages! +Note that you must drop the button before you can see its messages! """ import random from ev import Object diff --git a/src/utils/dummyrunner/dummyrunner_actions.py b/src/utils/dummyrunner/dummyrunner_actions.py index 7079a61b3d..e978788bd5 100644 --- a/src/utils/dummyrunner/dummyrunner_actions.py +++ b/src/utils/dummyrunner/dummyrunner_actions.py @@ -190,12 +190,20 @@ def c_moves(client): # #(0.1, c_creates_obj), # #(0.1, c_creates_button), # #(0.4, c_moves)) +## "normal player" definition +ACTIONS = ( c_login, + c_logout, + (0.01, c_digs), + (0.1, c_socialize), + (0.39, c_looks), + (0.1, c_help), + (0.4, c_moves)) ## "socializing heavy builder" definition -ACTIONS = (c_login, - c_logout, - (0.1, c_socialize), - (0.1, c_looks), - (0.1, c_help), - (0.2, c_creates_obj), - (0.2, c_digs), - (0.3, c_moves)) +#ACTIONS = (c_login, +# c_logout, +# (0.1, c_socialize), +# (0.1, c_looks), +# (0.1, c_help), +# (0.2, c_creates_obj), +# (0.2, c_digs), +# (0.3, c_moves))