forked from DST-Hamlet/PorkLand
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmodmain.lua
More file actions
34 lines (28 loc) · 916 Bytes
/
modmain.lua
File metadata and controls
34 lines (28 loc) · 916 Bytes
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
local modimport = modimport
local GetModConfigData = GetModConfigData
GLOBAL.setfenv(1, GLOBAL)
PL_CONFIG = {
locale = GetModConfigData("locale", true), -- Some of these may be treated as client-side, as indicated by the bool
}
modimport("main/constants")
modimport("main/util")
-- modimport("main/oceanutil")
modimport("main/assets")
modimport("main/fx")
modimport("main/strings")
modimport("main/commands")
modimport("main/standardcomponents")
modimport("main/pl_worldsettings_overrides")
modimport("main/RPC")
modimport("main/actions")
modimport("main/recipes")
modimport("main/cooking")
modimport("main/containers")
modimport("main/postinit")
AddReplicableComponent("hayfever")
AddReplicableComponent("sailor")
AddReplicableComponent("sailable")
AddReplicableComponent("boathealth")
AddReplicableComponent("boatcontainer")
AddReplicableComponent("interiorvisitor")
AddReplicableComponent("visualslot")