mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2025-12-09 16:05:07 +00:00
* Updates Coderbus and Adminbus Ruin (#73675) ## About The Pull Request Updates the people inside the coderbus and adminbus. Removes the meatballs, because... well, they used to be called something that actually accurately describes the admin team but now they're just meatballs. The banhammer now takes the driver seat of adminbus, with a sacrificial altar in the back. RIP to all the good players lost when they became admin ## Why It's Good For The Game It was really out of date lol ## Changelog 🆑 add: Updated the bus ruin /🆑 * Updates Coderbus and Adminbus Ruin --------- Co-authored-by: tralezab <40974010+tralezab@users.noreply.github.com>
13 lines
399 B
Plaintext
13 lines
399 B
Plaintext
// Affects the probability of a dice roll
|
|
/// Dice has a normal chance to land on any value
|
|
#define DICE_NOT_RIGGED 1
|
|
/// Dice has a higher chance to land on a rigged value
|
|
#define DICE_BASICALLY_RIGGED 2
|
|
/// Dice has a 100% chance to land on a rigged value
|
|
#define DICE_TOTALLY_RIGGED 3
|
|
|
|
/// card is considered face down
|
|
#define CARD_FACEDOWN 0
|
|
/// card is considered face up
|
|
#define CARD_FACEUP 1
|