Skip to content

Commit

Permalink
fix naming
Browse files Browse the repository at this point in the history
  • Loading branch information
rhazarian committed Mar 22, 2024
1 parent 8a4aeae commit 7411206
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/engine/object-data/entry/unit-type.ts
Original file line number Diff line number Diff line change
Expand Up @@ -891,12 +891,12 @@ export abstract class HeroUnitType<
}
}

public get properNamesCount(): number {
public get properNameCount(): number {
return this.getNumberField("upru")
}

public set properNamesCount(properNamesCount: number) {
this.setNumberField("upru", properNamesCount)
public set properNameCount(properNameCount: number) {
this.setNumberField("upru", properNameCount)
}
}
implementReadonlyNumberIndexSupplier(HeroUnitType, (id) => {
Expand Down

0 comments on commit 7411206

Please sign in to comment.