Skip to content

Commit

Permalink
feat: chicken bot
Browse files Browse the repository at this point in the history
  • Loading branch information
leomotors committed Sep 23, 2024
1 parent 739234f commit 8fd9c41
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

Changelog before version 4 is not available.

## [4.3.0] - 2024-09-23

- feat: added new bots to always online and do nothing list

## [4.2.0] - 2024-09-23

- feat: using same image for all architectures
Expand Down
7 changes: 6 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
# Bots Gulag

Run 5 Discord Bots in the same process to make server feels active and not dead.
Run 6 Discord Bots in the same process to make server feels active and not dead.
(It actually dead 💀)

Now available on RISC-V and running on RISC-V hardware!

This is my (@leomotors) first production running on RISC-V hardware and I will
expand support for RISC-V to other projects too!
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "bots-gulag",
"version": "4.2.0",
"version": "4.3.0",
"description": "Bots",
"repository": "https://github.com/CarelessDev/bots-gulag",
"type": "module",
Expand Down
1 change: 1 addition & 0 deletions src/environment.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ const environmentSchema = z.object({
VLADIMIR: z.string().min(10),
WESSUWAN: z.string().min(10),
CAPPUCHINO: z.string().min(10),
CHICKEN: z.string().min(10),
});

export const environment = environmentSchema.parse(process.env);
9 changes: 9 additions & 0 deletions src/slave.ts
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,15 @@ export const slaves: Parameters<typeof buildSlave>[] = [
name: "Chinoflix",
},
],
[
"Chicken",
environment.CHICKEN,
new CocoaIntent(),
{
type: ActivityType.Playing,
name: "เกมเด็กกระโปก",
},
],
];

export const clients = slaves.map((slave) => buildSlave(...slave));
Expand Down

0 comments on commit 8fd9c41

Please sign in to comment.