From 1c25ad6c3c608e8150f50e8f67d0830525f6ef8a Mon Sep 17 00:00:00 2001 From: Oj Date: Tue, 6 Apr 2021 17:58:15 +0100 Subject: [PATCH] [PCCompat] Remove excess logging --- moduleWrappers/powercord/entities.js | 8 -------- 1 file changed, 8 deletions(-) diff --git a/moduleWrappers/powercord/entities.js b/moduleWrappers/powercord/entities.js index 42630fb..4948a1c 100644 --- a/moduleWrappers/powercord/entities.js +++ b/moduleWrappers/powercord/entities.js @@ -13,8 +13,6 @@ export const powercord = { async ( { args: [ { text } ] } ) => { const out = await executor(text.split(' ')); // Run original executor func (await incase it's an async function) - console.log(out); - if (!out.send) { goosemodScope.patcher.internalMessage(out.result); // PC impl. sends internal message when out.send === false, so we also do the same via our previous Patcher API function @@ -95,20 +93,14 @@ const settingStores = {}; class SimpleStore { constructor() { - console.log('cons', this); - this.store = {}; } getSetting = (key, defaultValue) => { - console.log('getsetting', this); - return this.store[key] ?? defaultValue; } updateSetting = (key, value) => { - console.log('updatesetting', this); - this.store[key] = value; } }