From ab5e33506ee97ad8bb7e0daec066a008c7ce1aeb Mon Sep 17 00:00:00 2001 From: Dank074 Date: Tue, 27 Jul 2021 00:23:56 -0500 Subject: [PATCH] fixed typo that cost my sanity --- .../MarketPlaceOffer.ts => marketplace/MarketplaceOffer.ts} | 0 .../catalog/{utils => marketplace}/MarketplaceOfferData.ts | 0 .../catalog/marketplace/MarketplaceOffersReceivedParser.ts | 2 +- .../parser/catalog/marketplace/MarketplaceOwnItemsParser.ts | 2 +- .../communication/messages/parser/catalog/marketplace/index.ts | 2 ++ src/nitro/communication/messages/parser/catalog/utils/index.ts | 2 -- 6 files changed, 4 insertions(+), 4 deletions(-) rename src/nitro/communication/messages/parser/catalog/{utils/MarketPlaceOffer.ts => marketplace/MarketplaceOffer.ts} (100%) rename src/nitro/communication/messages/parser/catalog/{utils => marketplace}/MarketplaceOfferData.ts (100%) diff --git a/src/nitro/communication/messages/parser/catalog/utils/MarketPlaceOffer.ts b/src/nitro/communication/messages/parser/catalog/marketplace/MarketplaceOffer.ts similarity index 100% rename from src/nitro/communication/messages/parser/catalog/utils/MarketPlaceOffer.ts rename to src/nitro/communication/messages/parser/catalog/marketplace/MarketplaceOffer.ts diff --git a/src/nitro/communication/messages/parser/catalog/utils/MarketplaceOfferData.ts b/src/nitro/communication/messages/parser/catalog/marketplace/MarketplaceOfferData.ts similarity index 100% rename from src/nitro/communication/messages/parser/catalog/utils/MarketplaceOfferData.ts rename to src/nitro/communication/messages/parser/catalog/marketplace/MarketplaceOfferData.ts diff --git a/src/nitro/communication/messages/parser/catalog/marketplace/MarketplaceOffersReceivedParser.ts b/src/nitro/communication/messages/parser/catalog/marketplace/MarketplaceOffersReceivedParser.ts index da062e80..44395183 100644 --- a/src/nitro/communication/messages/parser/catalog/marketplace/MarketplaceOffersReceivedParser.ts +++ b/src/nitro/communication/messages/parser/catalog/marketplace/MarketplaceOffersReceivedParser.ts @@ -3,7 +3,7 @@ import { IMessageParser } from '../../../../../../core/communication/messages/IM import { IObjectData } from '../../../../../room/object/data/IObjectData'; import { ObjectDataFactory } from '../../../../../room/object/data/ObjectDataFactory'; import { LegacyDataType } from '../../../../../room/object/data/type/LegacyDataType'; -import { MarketplaceOffer } from '../utils/MarketPlaceOffer'; +import { MarketplaceOffer } from './MarketplaceOffer'; export class MarketplaceOffersReceivedParser implements IMessageParser diff --git a/src/nitro/communication/messages/parser/catalog/marketplace/MarketplaceOwnItemsParser.ts b/src/nitro/communication/messages/parser/catalog/marketplace/MarketplaceOwnItemsParser.ts index 64c30ac3..11f91ba8 100644 --- a/src/nitro/communication/messages/parser/catalog/marketplace/MarketplaceOwnItemsParser.ts +++ b/src/nitro/communication/messages/parser/catalog/marketplace/MarketplaceOwnItemsParser.ts @@ -3,7 +3,7 @@ import { IMessageParser } from '../../../../../../core/communication/messages/IM import { IObjectData } from '../../../../../room/object/data/IObjectData'; import { ObjectDataFactory } from '../../../../../room/object/data/ObjectDataFactory'; import { LegacyDataType } from '../../../../../room/object/data/type/LegacyDataType'; -import { MarketplaceOffer } from '../utils/MarketPlaceOffer'; +import { MarketplaceOffer } from './MarketplaceOffer'; export class MarketplaceOwnItemsParser implements IMessageParser diff --git a/src/nitro/communication/messages/parser/catalog/marketplace/index.ts b/src/nitro/communication/messages/parser/catalog/marketplace/index.ts index f89a2624..333bba08 100644 --- a/src/nitro/communication/messages/parser/catalog/marketplace/index.ts +++ b/src/nitro/communication/messages/parser/catalog/marketplace/index.ts @@ -1,4 +1,6 @@ export * from './MarketplaceBuyOfferResultParser'; export * from './MarketplaceCancelItemParser'; +export * from './MarketplaceOffer'; +export * from './MarketplaceOfferData'; export * from './MarketplaceOffersReceivedParser'; export * from './MarketplaceOwnItemsParser'; diff --git a/src/nitro/communication/messages/parser/catalog/utils/index.ts b/src/nitro/communication/messages/parser/catalog/utils/index.ts index 49eeb66b..ee6147c7 100644 --- a/src/nitro/communication/messages/parser/catalog/utils/index.ts +++ b/src/nitro/communication/messages/parser/catalog/utils/index.ts @@ -11,6 +11,4 @@ export * from './ClubGiftData'; export * from './ICatalogLocalizationData'; export * from './ICatalogPageData'; export * from './ICatalogPageParser'; -export * from './MarketPlaceOffer'; -export * from './MarketplaceOfferData'; export * from './SellablePetPaletteData';