Fixed clickable command examples.

This commit is contained in:
rainbow napkin 2025-12-25 03:20:57 -05:00
parent 3deb2e2d52
commit 7aeb4e9d0e

View file

@ -259,7 +259,7 @@ class chatPostprocessor{
link.textContent = wordObj.command;
//Add chatbox functionality
link.addEventListener('click', () => {this.client.chatBox.commandPreprocessor.preprocess(wordObj.command)});
link.addEventListener('click', () => {this.client.chatBox.transmit(wordObj.command)});
//We don't have to worry about injecting this into whitespace since there shouldn't be any here.
injectionArray.push(link);