---------------------------
Explanation:
The roboports have a wrong tooltip description based on it's defined variables. More specifically, on these two:
Code: Select all
energy_usage = "200kW",
-- per one charge slot
charging_energy = "200kW",
The charging_energy is how much energy the roboport output to a single robot at a time. For a default roboport, this value is 200KW, since it has 4 charging slots, 4x200KW.
However, the tooltip on the game for Robot recharge rate (when you mouse over a roboport) doesn't get it's value from charging_energy, but from the energy_usage, which leads to a incorret display when you change the charging_energy but leaves the energy_usage as default.
--------------------
Example: if you change the roboport's values to
Code: Select all
energy_usage = "50kW",
-- per one charge slot
charging_energy = "200kW",
The tooltip for Robot recharge rate is 4x50KW (incorret)
--------------
And if you change the values to
Code: Select all
energy_usage = "200kW",
-- per one charge slot
charging_energy = "50W",
The tooltip for Robot recharge rate is 4x200KW (incorret)