From 5f433033873977e6e80ccba7f942585b61fbd2bf Mon Sep 17 00:00:00 2001 From: Killswitch Date: Fri, 3 Jun 2016 21:45:50 +0200 Subject: [PATCH] Add meta.cpp file Metadata file used by the server browser in the A3 game launcher to pull mods used on a server directly from the Steam Workshop. This changeset was originally submitted by bux578 but went missing along the way. --- meta.cpp | 2 ++ tools/make.py | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) create mode 100644 meta.cpp diff --git a/meta.cpp b/meta.cpp new file mode 100644 index 000000000..ffac68838 --- /dev/null +++ b/meta.cpp @@ -0,0 +1,2 @@ +protocol = 1; +publishedid = 450814997; diff --git a/tools/make.py b/tools/make.py index ae5da9571..2b7e8e9df 100644 --- a/tools/make.py +++ b/tools/make.py @@ -73,7 +73,7 @@ prefix = "cba" pbo_name_prefix = "cba_" signature_blacklist = [] -importantFiles = ["mod.cpp", "README.md", "LICENSE.md", "logo_cba_ca.paa"] +importantFiles = ["mod.cpp", "meta.cpp", "README.md", "LICENSE.md", "logo_cba_ca.paa"] versionFiles = ["mod.cpp"] ###############################################################################