PneumaticCraft: Repressurized

PneumaticCraft: Repressurized

43M Downloads

Redstone Module with advanced circuit

duncanwebb opened this issue ยท 16 comments

commented

Minecraft Version

1.14.4

Forge Version

28.2.4

Mod Version

pneumaticcraft-repressurized-1.14.4-1.0.6-18

Describe your problem, including steps to reproduce it

How is the redstone module used, in comparator mode? I was expecting it to act like a normal comparator. In this case it would give a level of 1

redstone-module

Any other comments?

The HUD looks a bit wide.

commented

The comparator mode for Redstone Modules doesn't read off of an inventory, it's instead used to compare two signals from different channels. So, you could output a signal on Red if Red's signal is higher than Blue, for instance.

If you want to read an inventory, you still need either a vanilla Comparator or a universal sensor set to Comparator mode. These have the benefit of being able to read from a distance, so you can hide everything away behind walls or under floors.

commented

Yep, what @MuteTiefling said in regards to the comparator.

Regarding the HUD, that "------ITEMS/BLOCKS-----" header shouldn't be there, and is coming from another mod - certainly not from PNC. Not sure which mod's doing that, and I'm not sure how or why it's inserting text in the stat displays...

commented

Here's an example of usage with a vanilla comparator:

2020-06-15_08 24 09

commented

Thank you both. Now I understand how it works. Hadn't discovered that it has a receiving and a transmitting mode which is toggled by right clicking the module.

The universal sensor is very neat. When it is connected to a regular that is providing 4.9 bar and it has a security module in it leaks air. Is this intended?

commented

I wrote a little script to find the offending module

#! /bin/bash
CWD=$PWD
for f in *.jar; do
    echo "$f";
    scratch=$(mktemp -d)
    pushd "${scratch}" > /dev/null
    unzip -qq "$CWD/$f"
    find . -type f -print0 | xargs -r0 strings | grep 'ITEMS/BLOCKS'
    popd > /dev/null
    rm -r "${scratch}"
done

It shows this:
platforms-1.14-1.5.1.jar
"": "-------------------------------------------------- ITEMS/BLOCKS --------------------------------------------------!",
"": "-------------------------------------------------- ITEMS/BLOCKS --------------------------------------------------!",
"": "-------------------------------------------------- ITEMS/BLOCKS --------------------------------------------------!",

Should I raise a ticket there?

commented

I disabled platforms mod and got this

name-corrections

The message is coming from
shetiphiancore-1.14-3.6.1.jar
"": "------------------------------------------------ NAME CORRECTIONS ------------------------------------------------!",
"": "------------------------------------------------ NAME CORRECTIONS ------------------------------------------------!",
"": "------------------------------------------------ NAME CORRECTIONS ------------------------------------------------!",
"": "------------------------------------------------ NAME CORRECTIONS ------------------------------------------------!",
"": "------------------------------------------------ NAME CORRECTIONS ------------------------------------------------!",

Looks like a problem with data being carried over from one mod to another.

commented

How strange. I'll need to look into that but thanks for tracking down the mods of interest.

The security upgrade will cause machines to release air at 4.9 bar (specifically: 0.1 bar below the machine's danger pressure), so if you want to keep your system pressurised that highly, you could limit to e.g. 4.85 bar with the regulator module.

commented

In regards to the funky text: EnigmaticaModpacks/Enigmatica5#306

Seems they came to the same conclusion that it was shetiphiancore.

commented

I think I know what's going on; clashing translation keys. Both PNC and ShetiphianCore/Platforms are using _comment in the lang files (so all 3 mods are actually at fault here), and those comments are what are appearing in the stat windows.

Fortunately, this should be easily fixed, and in fact should already be fixed in the latest 1.15.2 release (1.3.0 beta). But I can fix this for 1.14.4 too.

commented

The odd text bug should be fixed in the 1.0.7 release for 1.14.4 (and 1.3.0 for 1.15.2). I'd appreciate if you could try out that release and let me know if it works for you too...

commented

Just tested the 1.0.7 release, unfortunately it didn't make any difference.

blocks-items

commented

Well, that's disappointing :(

Update: I've been testing more and I can't reproduce the problem with 1.0.7 and both ShetiPhianCore-1.14-3.6.2 and Platforms-1.14-1.5.2 installed. Are you on the latest versions of those mods? In any case, I'm certain now that is being dynamically inserted by one of these mods and can't be due to clashing translation keys anymore. PNC is not at fault here.

2020-06-17_11 11 34

(I am fixing the missing translation keys for gui.tab.upgrades.volume & gui.tab.upgrades.security and the "Show Range" button, though)

commented

Excellent.

Regarding the threshold, I suppose that could be raised... as a workaround you could add an Advanced PCB to the regulator and set its threshold to say 4.85.

Regarding tickets, I don't mind a couple of issues in one ticket but probably best to keep unrelated things in their own tickets...

commented

Many thanks, I upgraded the two mods and the messages are fixed, yet another success!

blocks-items-fixed

This is the layout where the security upgrade releases pressure.

security-upgrade

What do you think about setting the pressure release of the security upgrade at 4.92? The universal sensor is a valuable item, so it is worth a security upgrade.

BTW if you prefer I can raise a ticket per item.

commented

Thanks, adding an advanced PCB is a good tip.

commented

Fixed in 1.0.8 release