ソースを参照

Small fixes

Fix tile generation, and set default map width.
master
コミット
abd2c8adbe
2個のファイルの変更2行の追加2行の削除
  1. +1
    -1
      src/backend/services/Tile.service.ts
  2. +1
    -1
      src/components/GenerateMapForm/index.tsx

+ 1
- 1
src/backend/services/Tile.service.ts ファイルの表示

@@ -97,7 +97,7 @@ export class TileServiceImpl implements TileService {
} else if (landFlags.ne) {
cursor += 8; // 21
if (landFlags.nw) {
cursor += 20; // 33
cursor += 12; // 33
}
} else if (landFlags.nw) {
cursor += 9; // 22


+ 1
- 1
src/components/GenerateMapForm/index.tsx ファイルの表示

@@ -175,7 +175,7 @@ export const GenerateMapForm: VFC = () => {
block
placeholder="Width"
name="width"
defaultValue={512}
defaultValue={288}
/>
</div>
<div>


読み込み中…
キャンセル
保存