Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
miketwo committed Sep 2, 2024
1 parent d870bd7 commit 609fadd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion helper.py
Original file line number Diff line number Diff line change
Expand Up @@ -408,7 +408,7 @@ class CurlUp(Effect):
registers = [Message.ON_ATTACKED]
def __init__(self, host, amount):
# INFO: Due to some very strange bug, the 'C' is interpreted as the end of an escape sequence(^[[?62;4C) which is why it's escaped. wtf
super().__init__(host, '\Curl Up', StackType.INTENSITY, EffectType.BUFF, "On recieving attack damage, rolls and gains X <keyword>Block</keyword>. (Once per combat)", amount) # noqa: W605
super().__init__(host, 'Curl Up', StackType.INTENSITY, EffectType.BUFF, "On recieving attack damage, rolls and gains X <keyword>Block</keyword>. (Once per combat)", amount) # noqa: W605

def callback(self, message, data):
if message == Message.ON_ATTACKED:
Expand Down

0 comments on commit 609fadd

Please sign in to comment.