mirror of
https://github.com/evennia/evennia.git
synced 2026-04-01 13:37:17 +02:00
Ran black on master branch
This commit is contained in:
parent
9879d3af5e
commit
064bf30d3c
225 changed files with 6906 additions and 2178 deletions
|
|
@ -113,7 +113,9 @@ class CmdSmashGlass(Command):
|
|||
string = "You smash your hand against the glass"
|
||||
string += " with all your might. The lid won't budge"
|
||||
string += " but you cause quite the tremor through the button's mount."
|
||||
string += "\nIt looks like the button's lamp stopped working for the time being."
|
||||
string += (
|
||||
"\nIt looks like the button's lamp stopped working for the time being."
|
||||
)
|
||||
self.obj.lamp_works = False
|
||||
elif rand < 0.6:
|
||||
string = "You hit the lid hard. It doesn't move an inch."
|
||||
|
|
@ -123,7 +125,8 @@ class CmdSmashGlass(Command):
|
|||
string += " you should just try to open the lid instead?"
|
||||
self.caller.msg(string)
|
||||
self.caller.location.msg_contents(
|
||||
"%s tries to smash the glass of the button." % (self.caller.name), exclude=self.caller
|
||||
"%s tries to smash the glass of the button." % (self.caller.name),
|
||||
exclude=self.caller,
|
||||
)
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue