This commit is contained in:
Bill 2022-02-16 04:37:00 -05:00
commit d9cd1e75cb
9 changed files with 22 additions and 4 deletions

View File

@ -961,8 +961,8 @@ export class NitroMessages implements IMessageConfiguration
// CRAFTING // CRAFTING
this._composers.set(OutgoingHeader.CRAFT, CraftComposer); this._composers.set(OutgoingHeader.CRAFT, CraftComposer);
this._composers.set(OutgoingHeader.CRAFT_SECRET, CraftSecretComposer); this._composers.set(OutgoingHeader.CRAFT_SECRET, CraftSecretComposer);
this._composers.set(OutgoingHeader.GET_CRAFTABLE_PRODUCTS, GetCraftableProductsComposer); this._composers.set(OutgoingHeader.GET_CRAFTABLE_PRODUCTS, GetCraftingRecipeComposer);
this._composers.set(OutgoingHeader.GET_CRAFTING_RECIPE, GetCraftingRecipeComposer); this._composers.set(OutgoingHeader.GET_CRAFTING_RECIPE, GetCraftableProductsComposer);
this._composers.set(OutgoingHeader.GET_CRAFTING_RECIPES_AVAILABLE, GetCraftingRecipesAvailableComposer); this._composers.set(OutgoingHeader.GET_CRAFTING_RECIPES_AVAILABLE, GetCraftingRecipesAvailableComposer);
// FRIENDFURNI // FRIENDFURNI

View File

@ -0,0 +1,4 @@
export * from './CraftableProductsEvent';
export * from './CraftingRecipeEvent';
export * from './CraftingRecipesAvailableEvent';
export * from './CraftingResultEvent';

View File

@ -7,6 +7,7 @@ export * from './camera';
export * from './campaign'; export * from './campaign';
export * from './catalog'; export * from './catalog';
export * from './client'; export * from './client';
export * from './crafting';
export * from './desktop'; export * from './desktop';
export * from './friendlist'; export * from './friendlist';
export * from './game'; export * from './game';

View File

@ -4,7 +4,7 @@ export class GetCraftableProductsComposer implements IMessageComposer<Constructo
{ {
private _data: ConstructorParameters<typeof GetCraftableProductsComposer>; private _data: ConstructorParameters<typeof GetCraftableProductsComposer>;
constructor(k: string) constructor(k: number)
{ {
this._data = [k]; this._data = [k];
} }

View File

@ -4,7 +4,7 @@ export class GetCraftingRecipeComposer implements IMessageComposer<ConstructorPa
{ {
private _data: ConstructorParameters<typeof GetCraftingRecipeComposer>; private _data: ConstructorParameters<typeof GetCraftingRecipeComposer>;
constructor(k: number) constructor(k: string)
{ {
this._data = [k]; this._data = [k];
} }

View File

@ -0,0 +1,5 @@
export * from './CraftComposer';
export * from './CraftSecretComposer';
export * from './GetCraftableProductsComposer';
export * from './GetCraftingRecipeComposer';
export * from './GetCraftingRecipesAvailableComposer';

View File

@ -4,6 +4,7 @@ export * from './camera';
export * from './campaign'; export * from './campaign';
export * from './catalog'; export * from './catalog';
export * from './competition'; export * from './competition';
export * from './crafting';
export * from './desktop'; export * from './desktop';
export * from './friendfurni'; export * from './friendfurni';
export * from './friendlist'; export * from './friendlist';

View File

@ -0,0 +1,6 @@
export * from './CraftableProductsMessageParser';
export * from './CraftingRecipeIngredientParser';
export * from './CraftingRecipeMessageParser';
export * from './CraftingRecipesAvailableMessageParser';
export * from './CraftingResultMessageParser';
export * from './CraftingResultObjectParser';

View File

@ -8,6 +8,7 @@ export * from './campaign';
export * from './catalog'; export * from './catalog';
export * from './client'; export * from './client';
export * from './competition'; export * from './competition';
export * from './crafting';
export * from './desktop'; export * from './desktop';
export * from './friendlist'; export * from './friendlist';
export * from './game'; export * from './game';