Reply to thread

[CODE]public string ProcessFigure(string Figure, string gender, ICollection<ClothingParts> clothingParts, bool hasHabboClub)

{

    return Figure; //filtering is done in UpdateFigure so no need to rebuild it here

}[/CODE]

Why have the excess string, collection, and bool if you're just returning the figure? Also this entire ProcessFigure thing seems redundant if you're sending it the figure, doing nothing with it, and then returning it.


Top