1
0
mirror of https://github.com/SquidDev-CC/CC-Tweaked synced 2024-12-14 12:10:30 +00:00

Remove packet distance restriction for wired modems

Given that the network (and peripheral access within the network) no
longer have distance limits, packets being limited makes less sense.

Closes #1434.
This commit is contained in:
Jonathan Coates 2023-05-18 19:01:09 +01:00
parent b91bca8830
commit 03c794cd53
No known key found for this signature in database
GPG Key ID: B9E431FF07C98D06

View File

@ -44,12 +44,12 @@ public abstract class WiredModemPeripheral extends ModemPeripheral implements Wi
//region IPacketSender implementation //region IPacketSender implementation
@Override @Override
public boolean isInterdimensional() { public boolean isInterdimensional() {
return false; return true;
} }
@Override @Override
public double getRange() { public double getRange() {
return 256.0; return Integer.MAX_VALUE;
} }
@Override @Override