Fixed a minor typo. Resolves Issue 432.

This commit is contained in:
Griatch 2013-11-06 20:57:37 +01:00
parent bc8e27fea6
commit ead595c2df
2 changed files with 17 additions and 9 deletions

View file

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