diff --git a/src/client/shared/console.ts b/src/client/shared/console.ts new file mode 100644 index 0000000..4c4a578 --- /dev/null +++ b/src/client/shared/console.ts @@ -0,0 +1,10 @@ +import { ScramjetClient } from "../client"; + +export default function (client: ScramjetClient) { + client.Proxy("console.clear", { + apply(ctx) { + // fuck you + ctx.return(undefined); + }, + }); +}