You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Added a Light Board to put into Server Racks. Allows controlling coloured lights in various layouts.
20
+
- Added a Server Self-Destructor in case you don't need your servers anymore.
21
+
- Added a Rack Capacitor which is a Capacitor you can put into a Rack. Ingenious. It also provides a component that gives you the amount of energy stored in that capacitor.
18
22
* ADDED: Built-in tape utility program for ComputerCraft to write songs to tapes and to play, stop, pause etc.
19
23
* ADDED: getPosition() to tape drives. No, I'm not joking. It's real. I'm sorry.
20
24
* FIXED: Crash when the `openComputersBees` config option was set to `false`.
config.getFloat("ocLightBoardColorMaintenanceCost", "power", 0.2f, 0.0f, 10000.0f, "How much energy will be consumed per tick to keep a Light Board's light running. Note that this value is consumed for each active light on the board."));
135
138
BOOM_BOARD_MAINTENANCE_COST = convertRFtoOC(
136
139
config.getFloat("ocBoomBoardMaintenanceCost", "power", 0.2f, 0.0f, 10000.0f, "How much energy will be consumed per tick to keep a Server Self-Destructor active."));
140
+
RACK_CAPACITOR_CAPACITY = convertRFtoOC(
141
+
config.getFloat("ocRackCapacitorCapacity", "power", 7500f, 0.0f, 10000.0f, "How much energy a Rack Capacitor can store."));

4
+
5
+
The Rack Capacitor is a [Capacitor](/%LANGUAGE%/block/capacitor.md) that you can put inside a [Server Rack](/%LANGUAGE%/block/rack.md). Its benefits are akin to those of a normal [capacitor](/%LANGUAGE%/block/capacitor.md), however, Rack Capacitors do not get any adjacency bonus.
6
+
7
+
This Capacitor provides a component called `rack_capacitor` which allows you to read how much energy the capacitor stores at any point in time. This might be useful if you want to check whether your network is having power problems.
0 commit comments