Skip to content

Commit d7e6b40

Browse files
committed
Moni Labs 0.19.1
* TEMPORARILY revert inclusion of AE2CL * make sensor hatches not allowed to be shared between multis * microverse projectors now consume quantum flux every tick
1 parent ccf4f91 commit d7e6b40

File tree

3 files changed

+13
-7
lines changed

3 files changed

+13
-7
lines changed

changelog.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1-
# Moni Labs 0.19.0
1+
# Moni Labs 0.19.1
22

3-
* (Provisional) move to using and including the Cosmic Frontiers fork of AE2
3+
* TEMPORARILY revert inclusion of AE2CL
4+
* make sensor hatches not allowed to be shared between multis
5+
* microverse projectors now consume quantum flux every tick

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ org.gradle.jvmargs=-Xmx1G
1111
mapping_version=2023.09.03
1212

1313
# Mod Properties
14-
mod_version=0.19.0
14+
mod_version=0.19.1
1515
maven_group=net.neganote.monilabs
1616
archives_base_name=monilabs
1717
mod_id=monilabs

src/main/java/net/neganote/monilabs/common/machine/MoniMachines.java

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,8 @@ public class MoniMachines {
169169
.rotationState(RotationState.ALL)
170170
.tooltips(Component.translatable("monilabs.tooltip.chroma_sensor_hatch.0"),
171171
Component.translatable("monilabs.tooltip.chroma_sensor_hatch.1"),
172-
Component.translatable("monilabs.tooltip.chroma_sensor_hatch.2"))
172+
Component.translatable("monilabs.tooltip.chroma_sensor_hatch.2"),
173+
Component.translatable("gtceu.part_sharing.disabled"))
173174
.modelProperty(RenderColor.COLOR_PROPERTY, RenderColor.NONE)
174175
.modelProperty(IS_FORMED, false)
175176
.model(MoniMachineModels.createOverlayChromaCasingMachineModel("chroma_sensor", "casing/netherite"))
@@ -182,7 +183,8 @@ public class MoniMachines {
182183
.rotationState(RotationState.ALL)
183184
.tooltips(Component.translatable("tooltip.monilabs.xp_draining_hatch.0"),
184185
Component.translatable("tooltip.monilabs.xp_draining_hatch.1"),
185-
Component.translatable("tooltip.monilabs.xp_draining_hatch.2"))
186+
Component.translatable("tooltip.monilabs.xp_draining_hatch.2"),
187+
Component.translatable("gtceu.part_sharing.disabled"))
186188
.modelProperty(IS_FORMED, false)
187189
.model(MoniMachineModels.createOverlayCasingMachineModel("exp_hatch_draining", "casing/cryolobus"))
188190
.tier(GTValues.ZPM)
@@ -193,7 +195,8 @@ public class MoniMachines {
193195
.langValue("Sculk XP Sensor Hatch")
194196
.rotationState(RotationState.ALL)
195197
.tooltips(Component.translatable("tooltip.monilabs.xp_sensor_hatch.0"),
196-
Component.translatable("tooltip.monilabs.xp_sensor_hatch.1"))
198+
Component.translatable("tooltip.monilabs.xp_sensor_hatch.1"),
199+
Component.translatable("gtceu.part_sharing.disabled"))
197200
.tier(GTValues.ZPM)
198201
.modelProperty(FillLevel.FILL_PROPERTY, FillLevel.EMPTY_TO_QUARTER)
199202
.modelProperty(IS_FORMED, false)
@@ -205,7 +208,8 @@ public class MoniMachines {
205208
.langValue("Microverse Stability Sensor Hatch")
206209
.rotationState(RotationState.ALL)
207210
.tooltips(Component.translatable("tooltip.monilabs.microverse_stability_hatch.0"),
208-
Component.translatable("tooltip.monilabs.microverse_stability_hatch.1"))
211+
Component.translatable("tooltip.monilabs.microverse_stability_hatch.1"),
212+
Component.translatable("gtceu.part_sharing.disabled"))
209213
.tier(GTValues.HV)
210214
.modelProperty(FillLevel.FILL_PROPERTY, FillLevel.EMPTY_TO_QUARTER)
211215
.modelProperty(IS_FORMED, false)

0 commit comments

Comments
 (0)