Merge pull request #483 from FunkinCrew/bugfix/remove-kickstarter-backers

Remove Kickstarter link from credits.
This commit is contained in:
Cameron Taylor 2024-04-16 13:33:38 -04:00 committed by GitHub
commit dd64091a99
2 changed files with 3 additions and 7 deletions

2
assets

@ -1 +1 @@
Subproject commit cb6a3e268375eac6ee1fa8d3fa2eacee9576217f Subproject commit 1b12b6c6666af6c84addf5aa0795546aa0d04185

View file

@ -57,10 +57,6 @@ class CreditsDataHandler
{line: 'KawaiSprite'}, {line: 'KawaiSprite'},
{line: 'evilsk8r'}, {line: 'evilsk8r'},
] ]
},
{
header: 'Kickstarter Backers',
appendBackers: true
} }
] ]
}; };
@ -68,11 +64,11 @@ class CreditsDataHandler
public static function fetchBackerEntries():Array<String> public static function fetchBackerEntries():Array<String>
{ {
// TODO: Replace this with a web request. // TODO: Implement a web request.
// We can't just grab the current Kickstarter data and include it in builds, // We can't just grab the current Kickstarter data and include it in builds,
// because we don't want to deadname people who haven't logged into the portal yet. // because we don't want to deadname people who haven't logged into the portal yet.
// It can be async and paginated for performance! // It can be async and paginated for performance!
return ['See the list of backers at $BACKER_PUBLIC_URL.']; return [];
} }
#if HARDCODED_CREDITS #if HARDCODED_CREDITS