mirror of
https://gitgud.io/BondageProjects/Bondage-College.git
synced 2025-04-25 17:59:34 +00:00
Merge branch 'craft' into 'master'
HOTFIX: Remove the global flag of the crafting description regexes See merge request BondageProjects/Bondage-College!5477
This commit is contained in:
commit
ac4369397c
1 changed files with 2 additions and 2 deletions
|
@ -208,14 +208,14 @@ var CraftingDescription = {
|
|||
* Note the exclusion of control characters (except Newline aka `\n`), `§` (`\xA7`) and `¶` (`\xB6`).
|
||||
* @readonly
|
||||
*/
|
||||
Pattern: /^([\n\x20-\xA6\xA8-\xB5\xB7-\uFFFF]+)?$/g,
|
||||
Pattern: /^([\n\x20-\xA6\xA8-\xB5\xB7-\uFFFF]+)?$/,
|
||||
|
||||
/**
|
||||
* Regex for representing legal extended ASCII characters.
|
||||
* Note the exclusion of control characters (except Newline aka `\n`), `§` (`\xA7`) and `¶` (`\xB6`).
|
||||
* @readonly
|
||||
*/
|
||||
PatternASCII: /^([\n\x20-\xA6\xA8-\xB5\xB7-\xFF]+)?$/g,
|
||||
PatternASCII: /^([\n\x20-\xA6\xA8-\xB5\xB7-\xFF]+)?$/,
|
||||
|
||||
/**
|
||||
* Decode and return the passed string if it consists of UTF16-encoded UTF8 characters.
|
||||
|
|
Loading…
Add table
Reference in a new issue