Jump to content

Lamb Idol isn't protected from rain by Umbralla domes


hoxi
  • Fixed

Seems like it's missing a rainimmunity component check here.

local function updatefuelrate(inst)
    inst.components.fueled.rate = TheWorld.state.israining and 1 + inst.data.tunings.RAIN_RATE * TheWorld.state.precipitationrate or 1
end

Compared to similar structures like a campfire:

local function updatefuelrate(inst)
	inst.components.fueled.rate = TheWorld.state.israining and inst.components.rainimmunity == nil and 1 + TUNING.CAMPFIRE_RAIN_RATE * TheWorld.state.precipitationrate or 1
end

Steps to Reproduce

Verified with these steps just to make sure:

  1. Set up two idols somewhat close to each other on screen.
  2. Wait for rain to start or force it in some way.
  3. Drop and activate an umbralla in a spot that it only covers one.
  4. Light up both of them with the same amount of fuel, preferably the one inside the dome first just to make it more clear.
  5. Observe how they go out at the same rate.



User Feedback


A developer has marked this issue as fixed. This means that the issue has been addressed in the current development build and will likely be in the next update.


Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now

×
  • Create New...