activation clicks fix

This commit is contained in:
FullGreaM 2026-04-26 22:47:43 +03:00
parent bfd1e7c19a
commit 03499a8800

View File

@ -25,8 +25,8 @@ export abstract class GefestElement {
if (this.clickHandler === null)
return null;
return () => {
GefestEngine.activateOnClick();
this.clickHandler!();
GefestEngine.activateOnClick();
};
}