[MIRROR] Fixes an issue with changelog generation where the default lines would be included in the logs (#7465)

* Fixes an issue with changelog generation where the default lines would be included in the logs (#60736)

* In theory this should fix a bug MSO had in coderbus

* Apparently I am a very stupid cat

* Fixes an issue with changelog generation where the default lines would be included in the logs

Co-authored-by: NamelessFairy <40036527+NamelessFairy@users.noreply.github.com>
This commit is contained in:
SkyratBot
2021-08-08 23:05:29 +02:00
committed by GitHub
parent bdfefb74ad
commit 9c738967a1
2 changed files with 2 additions and 2 deletions

View File

@@ -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);
}