• R/O
  • HTTP
  • SSH
  • HTTPS

Commit

Tags
No Tags

Frequently used words (click to add to your profile)

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

Automap (client) [VS plugin mod]


Commit MetaInfo

Revisiona48739aa1e1737456b9d3c5961f055dca5d81ff5 (tree)
Time2020-04-27 23:28:36
AuthorThe Grand Dog <alex.h@me.c...>
CommiterThe Grand Dog

Log Message

Update AutomapSystem.cs

forgot to commit the line that adds the ClientAPI param to the ColumnMeta constructor

Change Summary

Incremental Difference

--- a/Automap/Subsystems/AutomapSystem.cs
+++ b/Automap/Subsystems/AutomapSystem.cs
@@ -370,7 +370,7 @@ namespace Automap
370370
371371 private ColumnMeta CreateColumnMetadata(KeyValuePair<Vec2i, uint> mostActiveCol, IMapChunk mapChunk)
372372 {
373- ColumnMeta data = new ColumnMeta(mostActiveCol.Key.Copy(), (byte) chunkSize);
373+ ColumnMeta data = new ColumnMeta(mostActiveCol.Key.Copy(), ClientAPI, (byte) chunkSize);
374374 BlockPos equivBP = new BlockPos(mostActiveCol.Key.X * chunkSize,
375375 mapChunk.YMax,
376376 mostActiveCol.Key.Y * chunkSize);