kill console.clear

This commit is contained in:
velzie 2024-08-30 17:42:55 -04:00
parent 0d84f77084
commit 2bc31d7e56
No known key found for this signature in database
GPG key ID: 048413F95F0DDE1F

View file

@ -0,0 +1,10 @@
import { ScramjetClient } from "../client";
export default function (client: ScramjetClient) {
client.Proxy("console.clear", {
apply(ctx) {
// fuck you
ctx.return(undefined);
},
});
}