From 94efbeada3e89155d434fc50d09445f9dd221b73 Mon Sep 17 00:00:00 2001 From: WBHarry <89362246+WBHarry@users.noreply.github.com> Date: Fri, 30 Jan 2026 16:05:11 +0100 Subject: [PATCH] Fixed a silly error with Hexgrid (#1608) --- module/documents/token.mjs | 2 +- system.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/module/documents/token.mjs b/module/documents/token.mjs index 317f3acf..b9507c2f 100644 --- a/module/documents/token.mjs +++ b/module/documents/token.mjs @@ -269,7 +269,7 @@ export default class DHToken extends CONFIG.Token.documentClass { // Hexagon symmetry if (columns) { - const rowData = BaseToken.#getHexagonalShape(height, width, shape, false); + const rowData = DHToken.#getHexagonalShape(height, width, shape, false); if (!rowData) return null; // Transpose the offsets/points of the shape in row orientation diff --git a/system.json b/system.json index 4a5eee0f..90ebf11d 100644 --- a/system.json +++ b/system.json @@ -2,7 +2,7 @@ "id": "daggerheart", "title": "Daggerheart", "description": "An unofficial implementation of the Daggerheart system", - "version": "1.6.1", + "version": "1.6.2", "compatibility": { "minimum": "13.346", "verified": "13.351",