Skip to content

Commit

Permalink
Merge pull request #13222 from leejt/patch-3
Browse files Browse the repository at this point in the history
  • Loading branch information
Nightfirecat authored Feb 16, 2021
2 parents 5fd55ae + 662c287 commit 0e7403a
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -174,9 +174,16 @@ public void onChatMessage(ChatMessage event)

if (message.startsWith("You successfully cook")
|| message.startsWith("You successfully bake")
|| message.startsWith("You successfully fry")
|| message.startsWith("You manage to cook")
|| message.startsWith("You roast a")
|| message.startsWith("You spit-roast")
|| message.startsWith("You cook")
|| message.startsWith("Eventually the Jubbly")
|| message.startsWith("You half-cook")
|| message.startsWith("The undead meat is now cooked")
|| message.startsWith("The undead chicken is now cooked")
|| message.startsWith("You successfully scramble")
|| message.startsWith("You dry a piece of meat"))
{
if (session == null)
Expand All @@ -189,6 +196,8 @@ public void onChatMessage(ChatMessage event)

}
else if (message.startsWith("You accidentally burn")
|| message.startsWith("You burn")
|| message.startsWith("Unfortunately the Jubbly")
|| message.startsWith("You accidentally spoil"))
{
if (session == null)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,9 @@ public void onChatMessage(ChatMessage event)
|| message.startsWith("Unfortunately the Jubbly")
|| message.startsWith("You accidentally burn")
|| message.startsWith("You half-cook")
|| message.startsWith("The undead meat is now cooked")
|| message.startsWith("The undead chicken is now cooked")
|| message.startsWith("You successfully scramble")
|| message.startsWith("You accidentally spoil"))
{
boolean inHosidiusKitchen = false;
Expand Down

0 comments on commit 0e7403a

Please sign in to comment.