Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master-MC1.7.10' into master-MC1.12
Browse files Browse the repository at this point in the history
  • Loading branch information
asiekierka committed May 7, 2023
2 parents db40014 + 8fb006a commit 9833087
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@
* Changed: The game now crashes instead of reloading defaults if a config file is present but invalid.
* Fixed: [#3588] Renaming over other files does not properly free space.
* Fixed: [#3591] Memory leak with wrapped worlds from other mods.
* Fixed: [#3596] Freeze when connecting a ComputerCraft peripheral via an Adapter (Kosmos-Prime)
* Fixed: [#3603] computer.getDeviceInfo doesn't pause the computer immediately (AR2000AR)
* Fixed: [#3609] Swapped arguments in a graphics card "bitblt()" edge case. (Kosmos-Prime)
* Removed: Native Lua library support for x86 (32-bit) macOS.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ public Object[] invoke(final String method, final Context context, final Argumen
@Override
public void onConnect(final Node node) {
super.onConnect(node);
if (node.host() instanceof Context) {
if (node.host() instanceof Context && !accesses.containsKey(node.address())) {
final FakeComputerAccess access = new FakeComputerAccess(this, (Context) node.host());
accesses.put(node.address(), access);
peripheral.attach(access);
Expand Down

0 comments on commit 9833087

Please sign in to comment.