0
0
mirror of https://github.com/sp-tarkov/server.git synced 2025-02-13 05:50:44 -05:00

Add missing return type

This commit is contained in:
Chomp 2025-01-12 12:03:16 +00:00
parent 13be82ea20
commit ed0e3d64c3

View File

@ -91,7 +91,7 @@ export class EventOutputHolder {
this.cleanUpCompleteCraftsInProfile(pmcData.Hideout.Production);
}
protected resetMoneyTransferLimit(limit: IMoneyTransferLimits) {
protected resetMoneyTransferLimit(limit: IMoneyTransferLimits): void {
if (limit.nextResetTime < this.timeUtil.getTimestamp()) {
limit.nextResetTime += limit.resetInterval;
limit.remainingLimit = limit.totalLimit;