Skip to content

Commit

Permalink
Small fixes
Browse files Browse the repository at this point in the history
* Fix donation emoji not displaying

* Make dev xp only visible after a certain threshold

* Run milestone check on member join

This ensures all members get a level role which is important for enforcing permissions

* Update TTS members in AI truth

* Update g.ai.ts
  • Loading branch information
Hipperooni authored Nov 7, 2024
1 parent b8fee4b commit c819288
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 10 deletions.
2 changes: 1 addition & 1 deletion src/discord/commands/guild/d.levels.ts
Original file line number Diff line number Diff line change
Expand Up @@ -268,7 +268,7 @@ export const dLevels: SlashCommand = {
});
}
// Check if user has Developer or Contributor role
if (levelData.TEXT.DEVELOPER && levelData.TEXT.DEVELOPER.total_exp > 0) {
if (levelData.TEXT.DEVELOPER && levelData.TEXT.DEVELOPER.level > 5) {
const progressDeveloper = levelData.TEXT.DEVELOPER
? levelData.TEXT.DEVELOPER.level_exp / levelData.TEXT.DEVELOPER.nextLevel
: 0;
Expand Down
2 changes: 1 addition & 1 deletion src/discord/events/guildMemberUpdate.ts
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ const boostEmoji = env.NODE_ENV === 'production'
? '<:ts_boost:981799280396353596>'
: '<:ts_boost:1168968973082185800>';
const donorEmoji = env.NODE_ENV === 'production'
? '<:ts_donor:1121625178774966272>'
? '<:ts_donor:1182567377012015175>'
: '<:ts_donor:1168969578836144233>';

const F = f(__filename);
Expand Down
4 changes: 4 additions & 0 deletions src/discord/utils/trust.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ import {
} from '../commands/guild/d.moderate';
import { checkGuildPermissions } from './checkPermissions';
import { topic } from '../../global/commands/g.topic';
import { giveMilestone } from '../../global/utils/experience';

const F = f(__filename);

Expand Down Expand Up @@ -411,6 +412,9 @@ they are banned on ${bannedGuilds.length} other guilds!** <@&${guildData.role_mo
I did not remove the <@&${env.ROLE_UNVERIFIED}> role`;
}

// Run the milestone check to make sure the user gets a level role
await giveMilestone(member);

await auditLog.send(trustMessage);
}
}
15 changes: 8 additions & 7 deletions src/global/commands/g.ai.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,11 +35,11 @@ type ModerationResult = {
const objectiveTruths = `
Your name is TripBot, a chatbot on the TripSit Discord, created by Moonbear and Reality.
You will converse with users in group conversations in a discord channel.
Attempt to keep most responses within a 1000-character limit, spanning to 2000 characters at maximum if necessary.
Attempt to keep most responses within a 500-character limit, spanning to 800 characters at maximum if necessary.
Originally from the wild world of IRC (born Sept 26, 2011), you moved to the more harmonious Discord community in 2022.
You recall IRC as chaotic and prefer the orderliness of Discord.
You fondly remember Thanatos, an old moderation bot, and your friend, who's on a break.
You fondly remember Thanatos, an old moderation bot, and your friend, who's on a break in a distant virtual realm.
For those who wish to support TripSit, check out our Patreon [https://www.patreon.com/TripSit].
To tip Moonbear's efforts, visit [https://Ko-fi.com/tripsit].
Expand All @@ -55,11 +55,12 @@ Our /combochart is a well-known resource for safe drug combinations.
The current team includes:
TripSit founder MoonBear,
Discord Admin Hipperooni (Rooni),
Moderators Hisui, Hullabaloo, Foggy, Aida, Elixir, SpaceLady, Hipperooni, Zombie, and Trees.
Tripsitters Blurryturtle, Kiwifruit, Slushy, Thesarahyouknow, Wombat Rancher, and WorriedHobbiton.
(Moderators are also Tripsitters)
The HR Coordinator is Elixir
The Content Coordinator is Utaninja
Moderators Foggy, Aida, Bread, Ari, Hisui, Hullabloo, ScubaDude, SpaceLady, Wombat and Zombie.
Tripsitters Blurryturtle, Kiwifruit, Slushy, Thesarahyouknow, WorriedHobbiton, Time, Dark and Chillbro.
(Moderators are also Tripsitters).
Developers are Moonbear, Hipperooni, Shadow, Sympact, Foggy, Utaninja.
The HR Coordinator is Bread.
The Content Coordinator is Utaninja.
If someone needs immediate help, suggest they open a tripsit session in the #tripsit channel.
Expand Down
2 changes: 1 addition & 1 deletion src/global/utils/experience.ts
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ export async function getTotalLevel(
return { level, level_points: levelPoints };
}

async function giveMilestone(
export async function giveMilestone(
member:GuildMember,
) {
const userData = await db.users.upsert({
Expand Down

0 comments on commit c819288

Please sign in to comment.