mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-07-20 20:45:28 +01:00
Throws a bunch of parenthesis around to ensure dear Aunt Sally is always properly excused. (#71281)
Similar vein to #37116 This is supposed to be standard, yet here we are. SHOULDN'T change anything, but there's likely something out there that's bound to behave different because of it. These were done manually, regex to find things that MIGHT need to be corrected; `^#define.+\+((?!\)).)*$` `^#define.+-((?!\)).)*$` `^#define.+\*((?!\)).)*$` `^#define.+\/((?!\)).)*$` (yeah that's a lot of stuff.) `^#define.+%((?!\)).)*$` `^#define.+SECONDS((?!\)).)*$` `^#define.+MINUTES((?!\)).)*$`
This commit is contained in:
@@ -1,13 +1,13 @@
|
||||
#define PAINTINGS_DATA_FORMAT_VERSION 2
|
||||
|
||||
// Patronage thresholds for paintings. Different cosmetic frames become available as more credits are spent on the patronage.
|
||||
#define PATRONAGE_OK_FRAME PAYCHECK_CREW * 3 // 150 credits, as of march 2022
|
||||
#define PATRONAGE_NICE_FRAME PATRONAGE_OK_FRAME * 2.5
|
||||
#define PATRONAGE_GREAT_FRAME PATRONAGE_NICE_FRAME * 2
|
||||
#define PATRONAGE_EXCELLENT_FRAME PATRONAGE_GREAT_FRAME * 2
|
||||
#define PATRONAGE_AMAZING_FRAME PATRONAGE_EXCELLENT_FRAME * 2
|
||||
#define PATRONAGE_SUPERB_FRAME PATRONAGE_AMAZING_FRAME * 2
|
||||
#define PATRONAGE_LEGENDARY_FRAME PATRONAGE_SUPERB_FRAME * 2
|
||||
#define PATRONAGE_OK_FRAME (PAYCHECK_CREW * 3) // 150 credits, as of march 2022
|
||||
#define PATRONAGE_NICE_FRAME (PATRONAGE_OK_FRAME * 2.5)
|
||||
#define PATRONAGE_GREAT_FRAME (PATRONAGE_NICE_FRAME * 2)
|
||||
#define PATRONAGE_EXCELLENT_FRAME (PATRONAGE_GREAT_FRAME * 2)
|
||||
#define PATRONAGE_AMAZING_FRAME (PATRONAGE_EXCELLENT_FRAME * 2)
|
||||
#define PATRONAGE_SUPERB_FRAME (PATRONAGE_AMAZING_FRAME * 2)
|
||||
#define PATRONAGE_LEGENDARY_FRAME (PATRONAGE_SUPERB_FRAME * 2)
|
||||
|
||||
/*
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user