Take into account that the hex size support module may not be installed (fixes #241)

This commit is contained in:
Manuel Vögele
2022-10-15 18:39:44 +02:00
parent 4b5fea0763
commit c2aa47985b
+1 -1
View File
@@ -64,7 +64,7 @@ export function getEntityCenter(token) {
// A copy of this function lives in the routinglib module
export function getAltOrientationFlagForToken(token, size) {
const hexSizeSupport = game.modules.get("hex-size-support").api;
const hexSizeSupport = game.modules.get("hex-size-support")?.api;
if (hexSizeSupport) {
return hexSizeSupport.isAltOrientation(token);
}