add lava death regex

This commit is contained in:
Ryan Cavicchioni 2020-05-09 11:00:39 -05:00
parent e75481b2f5
commit e41d3c6b7b
Signed by: ryanc
GPG Key ID: 877EEDAF9245103D

View File

@ -16,6 +16,7 @@ PATTERNS = (
(re.compile(r"(\S+) (joined|left) the game"), "{0} {1} the game"),
(re.compile(r"\[(\S+): Gave (\d+) \[(.+)\] to (\S+)\]"), "{0} gave {1} \"{2}\" to {3}"),
(re.compile(r"(\S+) was (\S+) by (\S+)"), ":skull: {0} was {1} by {2}"),
(re.compile(r"(\S+) tried to swim in lava"), "{0} tried to swim in lava"),
)