diff options
author | Luck <git@lucko.me> | 2024-09-05 20:37:25 +0100 |
---|---|---|
committer | Luck <git@lucko.me> | 2024-09-05 20:37:37 +0100 |
commit | 8986c711cef445650ceef832a3ac999819cd06a0 (patch) | |
tree | 3a53b128d88ad5f3028c0651e1c2b03a0cbd5288 /spark-common/src/main/proto/spark/spark.proto | |
parent | ed33fd51cefabfd04df4376dc2118f31ce93a90d (diff) | |
download | spark-8986c711cef445650ceef832a3ac999819cd06a0.tar.gz spark-8986c711cef445650ceef832a3ac999819cd06a0.tar.bz2 spark-8986c711cef445650ceef832a3ac999819cd06a0.zip |
Include datapacks info in sampler proto
Diffstat (limited to 'spark-common/src/main/proto/spark/spark.proto')
-rw-r--r-- | spark-common/src/main/proto/spark/spark.proto | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/spark-common/src/main/proto/spark/spark.proto b/spark-common/src/main/proto/spark/spark.proto index 779b3c6..f8d7988 100644 --- a/spark-common/src/main/proto/spark/spark.proto +++ b/spark-common/src/main/proto/spark/spark.proto @@ -158,6 +158,7 @@ message WorldStatistics { map<string, int32> entity_counts = 2; repeated World worlds = 3; repeated GameRule game_rules = 4; + repeated DataPack data_packs = 5; message World { string name = 1; @@ -182,6 +183,12 @@ message WorldStatistics { string default_value = 2; map<string, string> world_values = 3; } + + message DataPack { + string name = 1; + string description = 2; + string source = 3; + } } message WindowStatistics { @@ -227,6 +234,7 @@ message PluginOrModMetadata { string name = 1; string version = 2; string author = 3; + string description = 4; } message HealthData { |