make getUpdateableTraders() public

This commit is contained in:
Dev 2023-12-15 15:26:23 +00:00
parent c394cd6c6c
commit f815839ed8

View File

@ -78,7 +78,7 @@ export class RagfairServer
* Get traders who need to be periodically refreshed
* @returns string array of traders
*/
protected getUpdateableTraders(): string[]
public getUpdateableTraders(): string[]
{
return Object.keys(this.ragfairConfig.traders).filter((x) => this.ragfairConfig.traders[x]);
}