From 470dfc00498443718e38b9ad9851c7da5eaf013a Mon Sep 17 00:00:00 2001 From: asiekierka Date: Sun, 15 Mar 2015 17:23:08 +0100 Subject: [PATCH] raise packet sending frequency, sync lang --- .../assets/buildcraft/lang/en_US.lang | 8 +++++++- buildcraft_resources/changelog/7.0.0 | 15 ++++++++++++--- common/buildcraft/BuildCraftMod.java | 2 +- 3 files changed, 20 insertions(+), 5 deletions(-) diff --git a/buildcraft_resources/assets/buildcraft/lang/en_US.lang b/buildcraft_resources/assets/buildcraft/lang/en_US.lang index efae3400..c9c58704 100644 --- a/buildcraft_resources/assets/buildcraft/lang/en_US.lang +++ b/buildcraft_resources/assets/buildcraft/lang/en_US.lang @@ -107,6 +107,9 @@ gate.action.robot.filter_tool=Filter Tool gate.expansion.fader=Redstone Fader gate.expansion.pulsar=Autarchic Pulsar gate.expansion.timer=Clock Timer +gate.expansion.light_sensor=Light Sensor +gate.expansion.rtc=Real-Time Clock +gate.expansion.biological_sensor=Biological Sensor gate.logic.and=AND gate.logic.or=OR @@ -153,7 +156,9 @@ gate.trigger.pipe.wire.inactive=%s Pipe Signal Off gate.trigger.timer=%s Sec Timer gate.trigger.robot.sleep=Sleep gate.trigger.machine.energyStoredHigh=High Energy Stored -gate.trigger.machine.energyStoredLow=Low Energy Stored +gate.trigger.machine.energyStoredLow=Low Energy Stored +gate.trigger.light.bright=Bright +gate.trigger.light.dark=Dark gui.building.resources=Building Resources gui.building.fluids=Fluid Tanks @@ -269,6 +274,7 @@ itemGroup.buildcraft.boards=BuildCraft Robots itemGroup.buildcraft.main=BuildCraft itemGroup.buildcraft.pipes=BuildCraft Pipes itemGroup.buildcraft.facades=BuildCraft Facades +itemGroup.buildcraft.gates=BuildCraft Gates tile.architectBlock.name=Architect Table tile.assemblyTableBlock.name=Assembly Table diff --git a/buildcraft_resources/changelog/7.0.0 b/buildcraft_resources/changelog/7.0.0 index a17a2515..b783890d 100644 --- a/buildcraft_resources/changelog/7.0.0 +++ b/buildcraft_resources/changelog/7.0.0 @@ -1,11 +1,20 @@ Additions: * **New textures!** - "Essence" made by (CyanideX) * **Modularization** - BuildCraft is back to being modules (asie) -* Blueprint Library is now Electronic Library, supports copying books (asie) +* Optimizations to BuildCraft pipes (asie, Player) +* New blocks: + * Blueprint Library renamed to Electronic Library, supports copying books - and soon other things! (asie) +* New items: + * Paintbrush for dyeing pipes and other supported blocks (asie) + * Debugger for developer use (asie) +* New gate expansions: + * Light Sensor for detecting brightness in front of a gate (asie) +* Gate recipes now show up in NEI properly (asie) * Improved robot light handling - the light now denotes sleep state and battery charge level (asie) -* Added Robot triggers and actions: Linked, Reserved, In Station and Robot Mandatory (asie) -* Added Debugger for developer use (asie) +* Lasers now glow in the night (asie) +* New Robot triggers and actions: Linked, Reserved, In Station and Robot Mandatory (asie) * Made items in pipes move at a much smoother rate (asie) +* Optimizations here and there (asie) Bugfixes: * **Stopped wooden item pipes from exploding** (asie) diff --git a/common/buildcraft/BuildCraftMod.java b/common/buildcraft/BuildCraftMod.java index 8a70dd3e..93f880f6 100644 --- a/common/buildcraft/BuildCraftMod.java +++ b/common/buildcraft/BuildCraftMod.java @@ -114,7 +114,7 @@ public class BuildCraftMod { public void run() { while(true) { try { - Thread.sleep(20); + Thread.sleep(10); } catch(Exception e) { }