Making it so that Settings.hpp replaces token.h
This commit is contained in:
@@ -1,4 +1,3 @@
|
||||
#include "../token.h"
|
||||
#define CURRENCY_NAME "Night Coin"
|
||||
|
||||
#define COMMAND_BALANCE_DESCRIPTION "See someone's balance of " CURRENCY_NAME
|
||||
@@ -20,8 +19,8 @@
|
||||
|
||||
#define COMMAND_PRINT_DESCRIPTION "Allows the admin to print money on-demand"
|
||||
#define COMMAND_PRINT_ARGS_AMOUNT_DESCRIPTION "How much are we printing boss?"
|
||||
#define COMMAND_PRINT_FAIL_NO_PRIVILIEGE \
|
||||
"Only <@!" + std::to_string(ADMIN_ID) + "> can print money!"
|
||||
#define COMMAND_PRINT_SUCCESS(amount) \
|
||||
#define COMMAND_PRINT_FAIL_NO_PRIVILIEGE(recipient) \
|
||||
"Only <@!" + recipient + "> can print money!"
|
||||
#define COMMAND_PRINT_SUCCESS(recipient, amount) \
|
||||
"Successfully printed " + amount + " " CURRENCY_NAME "(s) to <@!" + \
|
||||
std::to_string(ADMIN_ID) + "> !"
|
||||
recipient + "> !"
|
||||
|
Reference in New Issue
Block a user