-
Notifications
You must be signed in to change notification settings - Fork 88
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Mega Bugs] Temperature/Gas Bugs #240
Comments
Default save file used air pumps when it meant to use air pumps. Vents just even out pressure and gasses, while pumps actually pump it from one room to another. |
but don’t we want the gas equalised? Otherwise the middle top and middle bottom end up with no gas? It all gets pumped into the right top/right bottom rooms |
the actual bug is that the rooms aren't set as Airlocks, so the airpumps aren't controlled as they should be. edit: and also that apparently roombehaviors aren't assignable anymore... |
Airpumps always pump from one to another though, that is how the lua is coded. How should they be controlled? |
They should be controlled by the room behavior. And also note that they can also be manually toggled (not that that makes a huge difference here. As soon as I sort out the room behaviors not being assignable, I'll give you a bit of json to add in the appropriate section that will get that part functional and get those rooms working as intended |
Replace
with
|
There are a lot of bugs to do with temperature and gases and other systems related to just temperature movement, I want to document them here before I go around changing things since they are all connected it is hard to fix them in isolation and see a change.
furniture.lua
file uses != for neq comparisons rather than ~= which is incorrect. Fixed neq comparisons (!= to ~=) inFurniture.lua
#242I'm going to start by fixing some of the smaller things on the list (each item will get a single PR though I'll group the save file ones) but since they are all related it makes sense to put them in a single issue.
The text was updated successfully, but these errors were encountered: