Jump to content

[Graphics] - Something strange


Maris

Recommended Posts

Bug Submission:

Category: Graphics
Issue Title: Something strange with Butterfly Effigy Mod.

Issue Description:

3318523.jpg

Steps to Reproduce:

1. dedicated_server_mods_setup.lua:

ServerModSetup("381610967")

2. modoverrides.lua:

return {	["workshop-381610967"] = { enabled = true },}

3. Join the game as client

I am author of the mod. And it's very simple, without any textures. See:

_G = GLOBALSTRINGS = _G.STRINGSRECIPETABS = _G.RECIPETABSRecipe = _G.RecipeIngredient = _G.IngredientTECH = _G.TECH STRINGS.RECIPE_DESC.BUTTERFLY = "An unborn flower." Recipe("butterfly", {Ingredient("twigs", 1),Ingredient("berries", 2),Ingredient("cutgrass",2)}, RECIPETABS.MAGIC, TECH.MAGIC_TWO) BUTTER_CHANCE = 0.02 dropper = _G.require "components/lootdropper"gen = dropper.GenerateLootfunction dropper:GenerateLoot(...)        if self.inst and self.inst.prefab=="butterfly" then                if math.random() < BUTTER_CHANCE then                        return {"butter"}                else                        return {"butterflywings"}                end        else                return gen(self,...)        endend

There is no any error messages. And I'm pretty sure that there is no bugs in the mod.

Just look at screenshot. I have no idea how it is possible.

Archived

This topic is now archived and is closed to further replies.

Please be aware that the content of this thread may be outdated and no longer applicable.

×
  • Create New...