• R/O
  • HTTP
  • SSH
  • HTTPS

提交

標籤

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

Carbon Copy plugin for VS


Commit MetaInfo

修訂672835ebcc6c645496ae13b80a9191e529dcaf0a (tree)
時間2020-03-17 07:45:21
作者melchior <melchior@user...>
Commitermelchior

Log Message

filter out NON 'game' domain blocks

Change Summary

差異

--- a/CarbonCopy/CarbonCopyMod.cs
+++ b/CarbonCopy/CarbonCopyMod.cs
@@ -246,7 +246,7 @@ namespace VCMiscMods
246246 reporter.WriteLine("MC Block Name\tVS Block Name\tVS ID#\tMaterial\t");
247247
248248 foreach (var block in ClientAPI.World.Blocks) {
249- if (block.Id != 0 && !block.IsMissing) {
249+ if (block.Id != 0 && !block.IsMissing && block.Code.Domain == GlobalConstants.DefaultDomain) {
250250 reporter.WriteLine($"<FILL>\t{block.Code.Path}\t{block.BlockId}\t{block.BlockMaterial}");
251251
252252 }
--- a/CarbonCopy/modinfo.json
+++ b/CarbonCopy/modinfo.json
@@ -3,7 +3,7 @@
33 "name": "Carbon-Copy",
44 "description" : "Export schematics from MP (clientside!)",
55 "authors": ["Melchior"],
6- "version": "0.1.2",
6+ "version": "0.1.3",
77 "side": "client",
88 "dependencies": {
99 "game": "1.11.0"