Skip to content
This repository was archived by the owner on Aug 23, 2024. It is now read-only.

Commit 2c4980e

Browse files
authored
Merge pull request #147 from maxx0911/patch-3
small inconsistency in activeadventure
2 parents d60cf5f + 16fc8af commit 2c4980e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cogs/adventure.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ def is_valid_move(r, u):
164164
if move == "defend" and enemymove == "attack":
165165
await ctx.send(_("Enemy attack was blocked!"), delete_after=5)
166166
if move == "defend" and enemymove == "defend":
167-
await ctx.send(_("Noone attacked."))
167+
await ctx.send(_("Noone attacked."), delete_after=5)
168168
if move == "attack" and enemymove == "attack":
169169
efficiency = random.randint(int(SWORD * 0.5), int(SWORD * 1.5))
170170
HP -= efficiency

0 commit comments

Comments
 (0)