From da3a76af302415d3ec8508ecbe7926e78f38b35b Mon Sep 17 00:00:00 2001 From: ZeusJunior <32263615+ZeusJunior@users.noreply.github.com> Date: Fri, 13 Oct 2023 21:03:46 +0200 Subject: [PATCH] fix: add new "Haunted Cremation" as haunted exception --- src/parseString/Attributes/getQuality/isHaunted.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/parseString/Attributes/getQuality/isHaunted.ts b/src/parseString/Attributes/getQuality/isHaunted.ts index 32895b2..39a26a4 100644 --- a/src/parseString/Attributes/getQuality/isHaunted.ts +++ b/src/parseString/Attributes/getQuality/isHaunted.ts @@ -7,7 +7,7 @@ export default function (name: string): boolean { } function isHauntedException(name: string): boolean { - return /(Haunted Hat)|(Haunted Ghosts)|(Haunted Phantasm)|(Haunted Metal Scrap)|(Haunted Kraken)|(Haunted Forever)|(Haunted Wick)/.test( + return /(Haunted Hat)|(Haunted Ghosts)|(Haunted Phantasm)|(Haunted Metal Scrap)|(Haunted Kraken)|(Haunted Forever)|(Haunted Wick)|(Haunted Cremation)/.test( name ); }