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

This commit is contained in:
Kylerace
2022-04-24 01:08:39 -07:00
committed by GitHub
parent 0abd3382cc
commit 93f39af8ac
4 changed files with 2 additions and 11 deletions

View File

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