mirror of
https://github.com/evennia/evennia.git
synced 2026-03-16 21:06: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
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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