Skip to content

Commit

Permalink
Update parser.py
Browse files Browse the repository at this point in the history
  • Loading branch information
Captian-obvious authored Nov 22, 2023
1 parent e80e504 commit 0703873
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,15 @@
HEADER = "<roblox!"
RBXM_SIGNATURE = "\x89\xff\x0d\x0a\x1a\x0a"
ZSTD_HEADER = "\x28\xB5\x2F\xFD"
VALID_CHUNK_IDENTIFIERS = {"END\0":True,"INST":True,"META":True,"PRNT":True,"PROP":True,"SIGN":True,"SSTR":True}
VALID_CHUNK_IDENTIFIERS = {
"END\0":True,
"INST":True,
"META":True,
"PRNT":True,
"PROP":True,
"SIGN":True,
"SSTR":True
}
def createTable(length,val):
arr=[]
for i in range(length):
Expand Down

0 comments on commit 0703873

Please sign in to comment.