This commit is contained in:
HbmMods 2026-05-09 22:22:10 +02:00
parent 7eda514c21
commit c018e42535
2 changed files with 4 additions and 2 deletions

View File

@ -21,4 +21,5 @@
* Fixed RoR graph showing the wrong name in the GUI * Fixed RoR graph showing the wrong name in the GUI
* Fixed polling option in RoR controllers reading dead signals * Fixed polling option in RoR controllers reading dead signals
* Fixed state change in RoR controllers not allowing repeat commands * Fixed state change in RoR controllers not allowing repeat commands
* Fixed blast furnace NEI handler not cycling through all valid material shapes * Fixed blast furnace NEI handler not cycling through all valid material shapes
* Fixed RoR transmitter sending empty signals when unused mappings apply

View File

@ -28,7 +28,8 @@ public class TileEntityRadioTorchSender extends TileEntityRadioTorchBase {
} }
if(shouldSend && !this.channel.isEmpty()) { if(shouldSend && !this.channel.isEmpty()) {
RTTYSystem.broadcast(worldObj, this.channel, this.customMap ? this.mapping[input] : (input + "")); String toSend = this.customMap ? this.mapping[input] : (input + "");
if(toSend != null && !toSend.isEmpty()) RTTYSystem.broadcast(worldObj, this.channel, toSend);
} }
} }