diff --git a/build/scripts/playerCommands.js b/build/scripts/playerCommands.js index 87e450b..91cbae6 100644 --- a/build/scripts/playerCommands.js +++ b/build/scripts/playerCommands.js @@ -314,6 +314,7 @@ exports.commands = (0, commands_1.commandList)(__assign(__assign({ about: { if (width > 50 || height > 50) (0, commands_1.fail)("Selection too large: width/height cannot be more than 50."); handleArea(p1, p2); + cachedPointMap[sender.uuid] = undefined; if (!args.persist) handleTaps("off"); } diff --git a/src/playerCommands.ts b/src/playerCommands.ts index 8982aba..4d70cfe 100644 --- a/src/playerCommands.ts +++ b/src/playerCommands.ts @@ -215,6 +215,7 @@ export const commands = commandList({ const height = Math.abs(p1[1] - p2[1]); if(width > 50 || height > 50) fail("Selection too large: width/height cannot be more than 50."); handleArea(p1, p2); + cachedPointMap[sender.uuid] = undefined; if(!args.persist) handleTaps("off"); } },