File tree Expand file tree Collapse file tree 1 file changed +16
-11
lines changed
Expand file tree Collapse file tree 1 file changed +16
-11
lines changed Original file line number Diff line number Diff line change @@ -122,19 +122,24 @@ target = "main.lua"
122122pattern = ''' function love.load()'''
123123position = " before"
124124payload = '''
125- Cryptid = {}
126- CryptLib = true
127- Cryptid.aliases = {}
128- Cryptid.pointerblist = {}
129- Cryptid.pointerblistrarity = {}
130- Cryptid.mod_gameset_whitelist = {}
131- Cryptid.mod_whitelist = {}
125+ if not Cryptid then
126+ Cryptid = {}
127+ CryptLib = true
128+ Cryptid.aliases = {}
129+ Cryptid.pointerblist = {}
130+ Cryptid.pointerblistrarity = {}
131+ Cryptid.mod_gameset_whitelist = {}
132+ Cryptid.mod_whitelist = {}
132133
133- Cryptid.rarity_table = {
134- }
134+ Cryptid.rarity_table = {
135+ }
135136
136- function cry_format(...)
137- return ...
137+ function cry_format(...)
138+ return ...
139+ end
140+ else
141+ CryptLib = true
142+ CryptLibNoCryptid = true
138143end
139144'''
140145match_indent = true
You can’t perform that action at this time.
0 commit comments