diff --git a/src/features/tooltips/tooltip.ts b/src/features/tooltips/tooltip.ts index 13cb931..2cb977d 100644 --- a/src/features/tooltips/tooltip.ts +++ b/src/features/tooltips/tooltip.ts @@ -1,6 +1,6 @@ import type { CoercableComponent, Replace, StyleValue } from "features/feature"; import { Component, GatherProps, setDefault } from "features/feature"; -import { persistent } from "game/persistence"; +import { deletePersistent, Persistent, persistent } from "game/persistence"; import { Direction } from "util/common"; import type { Computable, @@ -71,18 +71,22 @@ export function addTooltip( processComputable(options as T, "yoffset"); if (options.pinnable) { - if ("pinned" in element) { - console.error( - "Cannot add pinnable tooltip to element that already has a property called 'pinned'" - ); - options.pinnable = false; - } else { - // eslint-disable-next-line @typescript-eslint/no-explicit-any - (element as any).pinned = options.pinned = persistent(false, false); - } + options.pinned = persistent(false, false); } nextTick(() => { + if (options.pinnable) { + if ("pinned" in element) { + console.error( + "Cannot add pinnable tooltip to element that already has a property called 'pinned'" + ); + options.pinnable = false; + deletePersistent(options.pinned as Persistent); + } else { + // eslint-disable-next-line @typescript-eslint/no-explicit-any + (element as any).pinned = options.pinned; + } + } const elementComponent = element[Component]; element[Component] = TooltipComponent; const elementGatherProps = element[GatherProps].bind(element);