From e0a30ddb0ba408f9d126e9f54f9cec561a30c78e Mon Sep 17 00:00:00 2001 From: cha0s Date: Wed, 10 Jul 2024 14:15:05 -0500 Subject: [PATCH] refactor: support > 65536 spaces --- app/ecs-components/area-size.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/ecs-components/area-size.js b/app/ecs-components/area-size.js index cb92e15..b845887 100644 --- a/app/ecs-components/area-size.js +++ b/app/ecs-components/area-size.js @@ -2,7 +2,7 @@ import Component from '@/ecs/component.js'; export default class AreaSize extends Component { static properties = { - x: {type: 'uint16'}, - y: {type: 'uint16'}, + x: {type: 'uint32'}, + y: {type: 'uint32'}, }; }