Lowered default geolyzer noise value based on Wobbo's magnificent box blots.

This commit is contained in:
Florian Nücke 2015-01-30 01:14:04 +01:00
parent e4f51f6b99
commit 3bec2b38c7
4 changed files with 5 additions and 3 deletions

View File

@ -963,7 +963,7 @@ opencomputers {
# to the Geolyzer. So yes, on the same height, the returned value are of
# equal 'quality', regardless of the real distance. This is a performance
# trade-off.
geolyzerNoise: 4
geolyzerNoise: 2
# By default the disassembler can only be used to disassemble items from
# OpenComputers itself (or objects whitelisted via the API). If you'd

View File

@ -418,6 +418,10 @@ object Settings {
// inspection, patch to true to avoid stuff suddenly breaking.
VersionRange.createFromVersionSpec("1.3.4") -> Array(
"misc.allowItemStackInspection"
),
// Upgrading to version 1.4.7, reduce default geolyzer noise.
VersionRange.createFromVersionSpec("[0.0, 1.4.7)") -> Array(
"misc.geolyzerNoise"
)
)

View File

@ -10,7 +10,6 @@ import li.cil.oc.api.machine.Context
import li.cil.oc.api.network.Analyzable
import li.cil.oc.api.network._
import li.cil.oc.common.SaveHandler
import li.cil.oc.integration.Mods
import li.cil.oc.integration.util.Waila
import li.cil.oc.server.{PacketSender => ServerPacketSender}
import net.minecraft.entity.player.EntityPlayer

View File

@ -17,7 +17,6 @@ import li.cil.oc.client.Sound
import li.cil.oc.common.Slot
import li.cil.oc.common.tileentity.RobotProxy
import li.cil.oc.common.tileentity.traits
import li.cil.oc.integration.Mods
import li.cil.oc.integration.opencomputers.DriverRedstoneCard
import li.cil.oc.integration.stargatetech2.DriverAbstractBusCard
import li.cil.oc.integration.util.Waila