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) if (this.clickHandler === null)
return null; return null;
return () => { return () => {
GefestEngine.activateOnClick();
this.clickHandler!(); this.clickHandler!();
GefestEngine.activateOnClick();
}; };
} }