Arcturus-Community/src/main/java/com/eu/habbo/messages/outgoing/crafting/CraftingResultComposer.java
2018-12-22 10:39:00 +00:00

41 lines
1.1 KiB
Java

package com.eu.habbo.messages.outgoing.crafting;
import com.eu.habbo.habbohotel.crafting.CraftingRecipe;
import com.eu.habbo.messages.ServerMessage;
import com.eu.habbo.messages.outgoing.MessageComposer;
import com.eu.habbo.messages.outgoing.Outgoing;
public class CraftingResultComposer extends MessageComposer
{
private final CraftingRecipe recipe;
private final boolean succes;
public CraftingResultComposer(CraftingRecipe recipe)
{
this.recipe = recipe;
this.succes = this.recipe != null;
}
public CraftingResultComposer(CraftingRecipe recipe, boolean success)
{
this.recipe = recipe;
this.succes = success;
}
@Override
public ServerMessage compose()
{
this.response.init(Outgoing.CraftingResultComposer);
this.response.appendBoolean(this.succes); //succes
if(this.recipe != null)
{
this.response.appendString(this.recipe.getName());
this.response.appendString(this.recipe.getReward().getName());
}
return this.response;
}
}