Skip to content

Commit

Permalink
Add missing return type
Browse files Browse the repository at this point in the history
  • Loading branch information
Chomp committed Jan 12, 2025
1 parent 13be82e commit ed0e3d6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion project/src/routers/EventOutputHolder.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit ed0e3d6

Please sign in to comment.