forked from FAForever/fa
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGlobalInit.lua
More file actions
31 lines (23 loc) · 849 Bytes
/
GlobalInit.lua
File metadata and controls
31 lines (23 loc) · 849 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
#****************************************************************************
#**
#** File : /lua/system/GlobalInit.lua
#**
#** Summary : The Unit lua module
#**
#** Copyright © 2005 Gas Powered Games, Inc. All rights reserved.
#****************************************************************************
# Flag initial loading of blueprints
InitialRegistration = true
# Load blueprint systems
doscript '/lua/system/BuffBlueprints.lua'
# Load buff definitions
import('/lua/sim/BuffDefinitions.lua')
# Load Platoon Template systems
doscript '/lua/system/GlobalPlatoonTemplate.lua'
# Load Builder system
doscript '/lua/system/GlobalBuilderTemplate.lua'
# Load Builder Group systems
doscript '/lua/system/GlobalBuilderGroup.lua'
# Load Global Base Templates
doscript '/lua/system/GlobalBaseTemplate.lua'
InitialRegistration = false