mirror of
https://github.com/evennia/evennia.git
synced 2026-03-23 16:26:30 +01:00
Fixed a minor typo. Resolves Issue 432.
This commit is contained in:
parent
bc8e27fea6
commit
ead595c2df
2 changed files with 17 additions and 9 deletions
|
|
@ -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))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue