Renamed IHandbookBase
interfaces
This commit is contained in:
parent
955416f5be
commit
02b903e13e
@ -1,4 +1,4 @@
|
||||
import { Category } from "@spt/models/eft/common/tables/IHandbookBase";
|
||||
import { IHandbookCategory } from "@spt/models/eft/common/tables/IHandbookBase";
|
||||
import { Item } from "@spt/models/eft/common/tables/IItem";
|
||||
import { ConfigTypes } from "@spt/models/enums/ConfigTypes";
|
||||
import { Money } from "@spt/models/enums/Money";
|
||||
@ -176,7 +176,7 @@ export class HandbookHelper {
|
||||
return price ? Math.max(1, Math.round(roubleCurrencyCount / price)) : 0;
|
||||
}
|
||||
|
||||
public getCategoryById(handbookId: string): Category {
|
||||
public getCategoryById(handbookId: string): IHandbookCategory {
|
||||
return this.databaseService.getHandbook().Categories.find((category) => category.Id === handbookId);
|
||||
}
|
||||
}
|
||||
|
@ -1,9 +1,9 @@
|
||||
export interface IHandbookBase {
|
||||
Categories: Category[];
|
||||
Items: HandbookItem[];
|
||||
Categories: IHandbookCategory[];
|
||||
Items: IHandbookItem[];
|
||||
}
|
||||
|
||||
export interface Category {
|
||||
export interface IHandbookCategory {
|
||||
Id: string;
|
||||
ParentId?: string;
|
||||
Icon: string;
|
||||
@ -11,7 +11,7 @@ export interface Category {
|
||||
Order: string;
|
||||
}
|
||||
|
||||
export interface HandbookItem {
|
||||
export interface IHandbookItem {
|
||||
Id: string;
|
||||
ParentId: string;
|
||||
Price: number;
|
||||
|
@ -5,7 +5,7 @@ import { PresetHelper } from "@spt/helpers/PresetHelper";
|
||||
import { TraderHelper } from "@spt/helpers/TraderHelper";
|
||||
import { MinMax } from "@spt/models/common/MinMax";
|
||||
import { IPreset } from "@spt/models/eft/common/IGlobals";
|
||||
import { HandbookItem } from "@spt/models/eft/common/tables/IHandbookBase";
|
||||
import { IHandbookItem } from "@spt/models/eft/common/tables/IHandbookBase";
|
||||
import { Item } from "@spt/models/eft/common/tables/IItem";
|
||||
import { IBarterScheme } from "@spt/models/eft/common/tables/ITrader";
|
||||
import { BaseClasses } from "@spt/models/enums/BaseClasses";
|
||||
@ -327,7 +327,7 @@ export class RagfairPriceService implements OnLoad {
|
||||
* @returns Adjusted price of item
|
||||
*/
|
||||
protected adjustUnreasonablePrice(
|
||||
handbookPrices: HandbookItem[],
|
||||
handbookPrices: IHandbookItem[],
|
||||
unreasonableItemChange: IUnreasonableModPrices,
|
||||
itemTpl: string,
|
||||
price: number,
|
||||
|
Loading…
x
Reference in New Issue
Block a user