diff options
| author | Caleb Mabry <36182383+caleb-mabry@users.noreply.github.com> | 2022-07-17 13:43:25 -0400 |
|---|---|---|
| committer | Caleb Mabry <36182383+caleb-mabry@users.noreply.github.com> | 2022-07-17 13:43:25 -0400 |
| commit | 03aa72eda907a1586baf3664a0be71191d898b9b (patch) | |
| tree | 84cb974df25224e84d4cf2f61f1d3df31ef913bf /webAO/client.ts | |
| parent | 1aa738cd9849225266d623e98d1d9a455c3501f0 (diff) | |
Removing console logs
Diffstat (limited to 'webAO/client.ts')
| -rw-r--r-- | webAO/client.ts | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/webAO/client.ts b/webAO/client.ts index 64ffab9..18b173c 100644 --- a/webAO/client.ts +++ b/webAO/client.ts @@ -298,7 +298,6 @@ class Client extends EventEmitter { * @param {string} message the message to send */ sendServer(message: string) { - //console.log("C: "+message); mode === "replay" ? this.sendSelf(message) : this.serv.send(message); } @@ -615,7 +614,6 @@ class Client extends EventEmitter { * @param {number} character the character ID */ sendCharacter(character: number) { - console.log("sending " + character); if (character === -1 || this.chars[character].name) { this.sendServer(`CC#${this.playerID}#${character}#web#%`); } @@ -907,7 +905,6 @@ class Client extends EventEmitter { if (chatmsg.charid === this.charID) { resetICParams(); } - console.log(chatmsg); this.viewport.handle_ic_speaking(chatmsg); // no await } } |
