blob: 27550d357c3ab5f7df4400ceb4837a3fe8c7aad4 [file] [log] [blame] [raw]
package li.cil.oc.integration.vanilla
import li.cil.oc.Settings
import li.cil.oc.api.Driver
import li.cil.oc.integration.ModProxy
import li.cil.oc.integration.Mods
object ModVanilla extends ModProxy {
def getMod = Mods.Minecraft
def initialize() {
Driver.add(new DriverBeacon)
Driver.add(new DriverBrewingStand)
Driver.add(new DriverCommandBlock)
Driver.add(new DriverComparator)
Driver.add(new DriverFurnace)
Driver.add(new DriverMobSpawner)
Driver.add(new DriverNoteBlock)
Driver.add(new DriverRecordPlayer)
if (Settings.get.enableInventoryDriver) {
Driver.add(new DriverInventory)
}
if (Settings.get.enableTankDriver) {
Driver.add(new DriverFluidHandler)
Driver.add(new DriverFluidTank)
}
Driver.add(ConverterFluidStack)
Driver.add(ConverterFluidTankInfo)
Driver.add(ConverterItemStack)
}
}