From e41d3c6b7b550ae0cad8592f7b7c2714a203b19d Mon Sep 17 00:00:00 2001 From: Ryan Cavicchioni Date: Sat, 9 May 2020 11:00:39 -0500 Subject: [PATCH] add lava death regex --- roles/craftbukkit/files/discord.py | 1 + 1 file changed, 1 insertion(+) diff --git a/roles/craftbukkit/files/discord.py b/roles/craftbukkit/files/discord.py index 1f9e574..3649632 100644 --- a/roles/craftbukkit/files/discord.py +++ b/roles/craftbukkit/files/discord.py @@ -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"), )