removes the Content Expansion tag, replaces Mechanic with Feature, and lowers its gbp cost from 10 to 6 (#13056)

Co-authored-by: Kylerace <kylerlumpkin1@gmail.com>
This commit is contained in:
SkyratBot
2022-04-24 20:13:12 +02:00
committed by GitHub
parent dcfffdbb54
commit 7f53578900
4 changed files with 5 additions and 10 deletions

View File

@@ -16,7 +16,6 @@
:cl: :cl:
add: Added new mechanics or gameplay changes add: Added new mechanics or gameplay changes
add: Added more things add: Added more things
expansion: Expands content of an existing feature
del: Removed old things del: Removed old things
qol: made something easier to use qol: made something easier to use
balance: rebalanced something balance: rebalanced something

5
.github/gbp.toml vendored
View File

@@ -7,13 +7,16 @@ reset_label = "GBP: Reset"
"Atomic" = 2 "Atomic" = 2
"Balance/Rebalance" = -5 "Balance/Rebalance" = -5
"Code Improvement" = 2 "Code Improvement" = 2
"Content Expansion" = -3
"Feedback" = 2 "Feedback" = 2
"Fix" = 4 "Fix" = 4
"Grammar and Formatting" = 1 "Grammar and Formatting" = 1
"Hard Deletes" = 12 "Hard Deletes" = 12
"Logging" = 1 "Logging" = 1
<<<<<<< HEAD
"Mechanic" = -12 "Mechanic" = -12
=======
"Feature" = -6
>>>>>>> 93f39af8ac7 (removes the Content Expansion tag, replaces Mechanic with Feature, and lowers its gbp cost from 10 to 6 (#66425))
"Performance" = 12 "Performance" = 12
"Priority: CRITICAL" = 20 "Priority: CRITICAL" = 20
"Priority: High" = 15 "Priority: High" = 15

View File

@@ -731,7 +731,7 @@ function checkchangelog($payload, $compile = true) {
case 'adds': case 'adds':
case 'rscadd': case 'rscadd':
if($item != 'Added new mechanics or gameplay changes' && $item != 'Added more things') { if($item != 'Added new mechanics or gameplay changes' && $item != 'Added more things') {
$tags[] = 'Mechanic'; $tags[] = 'Feature';
$currentchangelogblock[] = array('type' => 'rscadd', 'body' => $item); $currentchangelogblock[] = array('type' => 'rscadd', 'body' => $item);
} }
break; break;
@@ -777,12 +777,6 @@ function checkchangelog($payload, $compile = true) {
$currentchangelogblock[] = array('type' => 'code_imp', 'body' => $item); $currentchangelogblock[] = array('type' => 'code_imp', 'body' => $item);
} }
break; break;
case 'expansion':
if($item != 'Expands content of an existing feature'){
$tags[] = 'Content Expansion';
$currentchangelogblock[] = array('type' => 'expansion', 'body' => $item);
}
break;
case 'refactor': case 'refactor':
if($item != 'refactored some code'){ if($item != 'refactored some code'){
$tags[] = 'Refactor'; $tags[] = 'Refactor';

View File

@@ -53,7 +53,6 @@ validPrefixes = [
'rscdel', 'rscdel',
'imageadd', 'imageadd',
'imagedel', 'imagedel',
'expansion',
'spellcheck', 'spellcheck',
'experiment', 'experiment',
'balance', 'balance',