diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md index 2fd5c401a48..4edfdd7fb70 100644 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -13,7 +13,7 @@ :cl: add: Added new mechanics or gameplay changes add: Added more things -expansion: Expands content of an existing thing +expansion: Expands content of an existing feature del: Removed old things qol: made something easier to use balance: rebalanced something diff --git a/tools/WebhookProcessor/github_webhook_processor.php b/tools/WebhookProcessor/github_webhook_processor.php index 98a09aab6fe..03d0e6e8c45 100644 --- a/tools/WebhookProcessor/github_webhook_processor.php +++ b/tools/WebhookProcessor/github_webhook_processor.php @@ -697,7 +697,7 @@ function checkchangelog($payload, $compile = true) { case 'add': case 'adds': case 'rscadd': - if($item != 'Added new things' && $item != 'Added more things') { + if($item != 'Added new mechanics or gameplay changes' && $item != 'Added more things') { $tags[] = 'Mechanic'; $currentchangelogblock[] = array('type' => 'rscadd', 'body' => $item); }