Some miscellanious cleanup

This commit is contained in:
Oliver-Akins 2024-02-06 20:42:56 -07:00
parent 2f8ec1b79c
commit 7067615da7
9 changed files with 31 additions and 2822 deletions

View file

@ -62,7 +62,6 @@ export class ActorHandler extends Actor {
async genericSendToChat($event) {
const data = $event.currentTarget.dataset;
const type = data.messageType;
console.log(data)
if (this.fn?.[`send${type}ToChat`]) {
return await this.fn?.[`send${type}ToChat`].bind(this)($event);
};