diff options
author | Maya <11448698+RoyalBlue1@users.noreply.github.com> | 2023-12-14 01:31:37 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-12-14 01:31:37 +0100 |
commit | f4df3144adbd45d48d812d102cfaf7cef474824e (patch) | |
tree | 64c893be449445391aa9f035357cf8f40a0c2b3b /Northstar.Custom/mod.json | |
parent | 7140cce045a94b4d8e02b347bb2e8b6bfc9c7c89 (diff) | |
download | NorthstarMods-f4df3144adbd45d48d812d102cfaf7cef474824e.tar.gz NorthstarMods-f4df3144adbd45d48d812d102cfaf7cef474824e.zip |
Add Winter holiday event models to the lobby (#768)
Adds decorative models to the lobby map that will only display during winter holiday season.
Diffstat (limited to 'Northstar.Custom/mod.json')
-rw-r--r-- | Northstar.Custom/mod.json | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/Northstar.Custom/mod.json b/Northstar.Custom/mod.json index 93f371bd..399311e4 100644 --- a/Northstar.Custom/mod.json +++ b/Northstar.Custom/mod.json @@ -24,6 +24,11 @@ { "Name": "ns_force_melee", "DefaultValue": "" + }, + { + "Name": "ns_show_event_models", + "DefaultValue": "1", + "Flags": "ARCHIVE_PLAYERPROFILE" } ], "Scripts": [ @@ -434,6 +439,20 @@ { "Path": "sh_northstar_safe_io.gnut", "RunOn": "CLIENT || SERVER || UI" + }, + { + "Path": "_event_models.gnut", + "RunOn": "SERVER && LOBBY", + "ServerCallback": { + "Before": "EventModelsInit" + } + }, + { + "Path": "ui/ns_custom_mod_settings.gnut", + "RunOn": "UI", + "UICallback":{ + "Before": "NSCustomModSettings" + } } ], |