28 lines
798 B
TOML
28 lines
798 B
TOML
[manifest]
|
|
version = "1.0.0"
|
|
dump_lua = true
|
|
priority = -1
|
|
|
|
# call Cryptid.update_member_count() whenever the collection is opened to ensure it updates properly on title collection if it can (better than running it on loc_vars)
|
|
# it's not computationally intense at all, so whatever
|
|
[[patches]]
|
|
[patches.pattern]
|
|
target = "functions/button_callbacks.lua"
|
|
pattern = '''G.FUNCS.your_collection = function(e)'''
|
|
position = "after"
|
|
payload = '''
|
|
if Cryptid.update_member_count then Cryptid.update_member_count() end
|
|
'''
|
|
match_indent = true
|
|
|
|
# test
|
|
[[patches]]
|
|
[patches.pattern]
|
|
target = "functions/common_events.lua"
|
|
pattern = "if _c.specific_vars then specific_vars = _c.specific_vars end"
|
|
position = "before"
|
|
payload = '''
|
|
if _c.plua_extra then main_start = _c.plua_extra end
|
|
'''
|
|
match_indent = true
|