Compare commits

..

2 Commits

Author SHA1 Message Date
cat
ec75cd32be Removed "The" from Night Coin 2025-07-19 02:31:25 +03:00
cat
17cfc95947 Default is now 100 coins 2025-07-19 02:29:58 +03:00
2 changed files with 2 additions and 2 deletions

View File

@@ -1,4 +1,4 @@
#define CURRENCY_NAME "the night coin"
#define CURRENCY_NAME "Night Coin"
#define COMMAND_BALANCE_DESCRIPTION "See your balance of " CURRENCY_NAME
#define COMMAND_BALANCE_RESPONSE(balance) \

View File

@@ -2,7 +2,7 @@
#define MAKE_DATABASE "CREATE TABLE IF NOT EXISTS "
#define DATABASE_MONEY \
"MONEY(UID INT PRIMARY KEY NOT NULL, CASH INT NOT NULL DEFAULT 0)"
"MONEY(UID INT PRIMARY KEY NOT NULL, CASH INT NOT NULL DEFAULT 100)"
inline void makeDatabases() {
sqlite3_open("bot.db", &database);