About Alveo Vera, the consume rate of Carobon Dioxide should be 2g/s. If we refer to Oxyfern and its related code.
There are 3 plants have the atrribute of replanted. So maybe this thing make DATABASE show some wrong value.
Please look at these case:
1. Alveo Vera
code about consume rate:
bool replanted = this.receptacleMonitor.Replanted; if (replanted) { this.elementConsumer.consumptionRate = 0.002f; } else { this.elementConsumer.consumptionRate = 0.0005f; // DATABASE chose this wrong value. }
2. Oxyfern
code about consume rate:
bool replanted = this.receptacleMonitor.Replanted; if (replanted) { this.elementConsumer.consumptionRate = 0.00062500004f; // DATABASE chose this correct value. } else { this.elementConsumer.consumptionRate = 0.00015625001f; }
3. Wheezewort
QuoteWheezewort consumes gas. And have consume rate, but never show it in the DATABASE.
code about consume rate:
ElementConsumer ec = base.GetComponent<ElementConsumer>(); bool replanted = rm.Replanted; if (replanted) { ec.consumptionRate = this.consumptionRate; } else { ec.consumptionRate = this.consumptionRate * 0.25f; }
Conclusion
The DATABASE shows that the rules for gas consumption are somewhat confusing. Only if the plant have the attribute: replanted.
Hopefully this bug can be fixed.
Enter game OxygennotIncluded > open DATABASE. Chose Plant>Alveo Vera
-
1
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 accountSign in
Already have an account? Sign in here.
Sign In Now