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.
2 parents 574d3d1 + 6e80d85 commit b39ab1aCopy full SHA for b39ab1a
Cryptid.lua
@@ -69,7 +69,11 @@ local function process_items(f, mod)
69
}
70
item.mod_path = mod.path
71
if item.key then
72
- item.key = mod.prefix .. "_" .. item.key
+ if item.object_type and SMODS[item.object_type].class_prefix then
73
+ item.key = SMODS[item.object_type].class_prefix .. "_" .. mod.prefix .. "_" .. item.key
74
+ else
75
+ item.key = mod.prefix .. "_" .. item.key
76
+ end
77
end
78
if item.atlas then
79
item.atlas = mod.prefix .. "_" .. item.atlas
0 commit comments