1
0
mirror of https://github.com/toast-ts/Daggerbot-TS.git synced 2024-11-17 16:30:58 -05:00

Compare commits

..

2 Commits

Author SHA1 Message Date
Toast
3bd917a814 Fix MPModule's webhook 2023-12-26 12:05:24 +11:00
AnxietyisReal
8906b4f660 Update API endpoint 2023-12-26 11:27:02 +11:00
4 changed files with 8 additions and 6 deletions

View File

@ -1,6 +1,6 @@
{
"configName": "Daggerbot",
"embedColor": "#0052cf",
"embedColor": "#ffffff",
"embedColorBackup": "#0052cf",
"embedColorGreen": "#57f287",
"embedColorYellow": "#ffea00",
@ -14,7 +14,7 @@
],
"botSwitches": {
"dailyMsgsBackup": true,
"registerCommands": true,
"registerCommands": false,
"commands": true,
"logs": true,
"mpSys": true,
@ -78,7 +78,8 @@
"bankick_log": "1048341961901363352",
"punishment_log": "1102751034754998302",
"dcmod_chat": "742324777934520350",
"mpmod_chat": "516344221452599306"
"mpmod_chat": "516344221452599306",
"multifarm_chat": "1149238561934151690"
}
}
}

View File

@ -1,3 +1,3 @@
import TokenService from '@toast/tokenservice-client';
export default async()=>new TokenService('daggerbotbeta').connect();
export default async()=>new TokenService('daggerbot').connect();

3
src/interfaces.d.ts vendored
View File

@ -157,7 +157,8 @@ export interface Config {
bankick_log: string,
punishment_log: string,
dcmod_chat: string,
mpmod_chat: string
mpmod_chat: string,
multifarm_chat: string
}
}
}

View File

@ -124,7 +124,7 @@ async function multifarmWebhook(client:TClient, server:IServer, webhookId:string
{name: 'Fuel Usage', value: getMappedValue(txtMapping.fuelUsage, csg?.settings.fuelUsage, dataUnavailable), inline: true},
{name: 'Dirt Interval', value: getMappedValue(txtMapping.dirtInterval, csg?.settings.dirtInterval, dataUnavailable), inline: true}
];
return new HookMgr(client, 'thismeanswar', webhookId).edit(messageId, {
return new HookMgr(client, 'multifarm_chat', webhookId).edit(messageId, {
content: refreshIntrvlTxt, embeds: [
new client.embed().setColor(client.config.embedColor).setTitle(`Savegame Settings - ${csg?.settings?.mapTitle}`).addFields(fields).setFooter({text: 'Last updated'}).setTimestamp()
]