-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathmod.lua
More file actions
38 lines (28 loc) · 1.01 KB
/
mod.lua
File metadata and controls
38 lines (28 loc) · 1.01 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
--- STEAMODDED HEADER
--- MOD_NAME: Cartomancer
--- MOD_ID: cartomancer
--- MOD_AUTHOR: [stupxd aka stupid]
--- MOD_DESCRIPTION: Quality of life features and optimizations
--- PRIORITY: 69
--- BADGE_COLOR: FFD700
--- DISPLAY_NAME: Cartomancer
--- VERSION: 4.17c
----------------------------------------------
------------MOD CODE -------------------------
if not SMODS.current_mod then
return
end
assert(Cartomancer, [[
----------------------------------------
----------- READ -- THIS ---------------
----------------------------------------
Your Cartomancer folder seems to be nested in another folder!
Which means that path to the mod looks like Mods/Cartomancer/Cartomancer/mod.lua
instead of Mods/Cartomancer/mod.lua
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
----------------------------------------
]])
SMODS.current_mod.config_tab = Cartomancer.config_tab
SMODS.current_mod.save_mod_config = Cartomancer.save_config
----------------------------------------------
------------MOD CODE END----------------------