Rename function

This commit is contained in:
Bill 2021-09-29 22:42:08 -04:00
parent c6acaff9f4
commit 6a1a32efb1
2 changed files with 2 additions and 2 deletions

View File

@ -2,7 +2,7 @@
export interface INitroLocalizationManager extends INitroManager
{
getRomanNumeral(number: number): string;
getBadgeBaseAndLevel(badgeName: string): string;
getPreviousLevelBadgeId(badgeName: string): string;
hasValue(key: string): boolean;
getValue(key: string, doParams?: boolean): string;
getValueWithParameter(key: string, parameter: string, replacement: string): string;

View File

@ -101,7 +101,7 @@ export class NitroLocalizationManager extends NitroManager implements INitroLoca
return this._romanNumerals[Math.max(0, (number - 1))];
}
public getBadgeBaseAndLevel(badgeName: string): string
public getPreviousLevelBadgeId(badgeName: string): string
{
const badge = new BadgeBaseAndLevel(badgeName);