We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ae016f4 commit dda55f7Copy full SHA for dda55f7
addons/pandora/util/tokenizer.gd
@@ -4,7 +4,7 @@ static var regex:RegEx
4
static func tokenize(value:String) -> String:
5
if regex == null:
6
regex = RegEx.new()
7
- regex.compile("(^[^A-Z_])|([^A-Z0-9_])")
+ regex.compile("(^[^A-Z_\u4e00-\u9fa5])|([^A-Z0-9_\u4e00-\u9fa5])")
8
var token = value.to_upper()
9
10
var regex_matches = regex.search_all(token)
pandora/categories.gd
@@ -2,11 +2,11 @@
2
class_name PandoraCategories
3
-const ROOT = "BfNTMLO-WG"
+const ROOT = "og1dmAzn1b"
class RootCategories:
- const ITEMS = "t2gVU9hBys"
- const NPCS = "dH4s0ttwht"
+ const ITEMS = "EBUfjZlkKO"
+ const NPCS = "S6Dp5mcWW6"
11
12
0 commit comments