Change capacity tanker for liquid
Change capacity tanker for liquid
let's say I want to change the original from 2500 to 40000, etc.
-
- Manual Inserter
- Posts: 3
- Joined: Thu Aug 21, 2014 11:08 am
- Contact:
Re: Change capacity tanker for liquid
I understand you mean tanks, cause I don't remember any tankers in this game. (And it's unlikely that they added that in last update) (There also is possibility that you mean tankers from one of mod (that I'm not aware of) but then you should mention that in your post)
It's in node fluid_box of tank, parameter base_area,
(It's in file /data/base/prototypes/entity/entities.lua, but I don't recommend editing, just for view)
so if you are making your own tanks you need to edit that to decide about capacity, if you want to edit capacity of existing one, you need to override that.
It's in node fluid_box of tank, parameter base_area,
Code: Select all
fluid_box =
{
base_area = 250,
.....
so if you are making your own tanks you need to edit that to decide about capacity, if you want to edit capacity of existing one, you need to override that.