mesecons icon indicating copy to clipboard operation
mesecons copied to clipboard

Mod for minetest that adds digital circuitry [=Minecraft redstone]

Results 115 mesecons issues
Sort by recently updated
recently updated
newest added

## Overview This PR does three things: - Clean up the basic info getters like `mesecon.get_conductor`. - Speed up the functions for finding node links, remove unnecessary allocations. - As...

maintenance
review needed

The tests use [mineunit](https://github.com/S-S-X/mineunit), a nice Minetest testing framework based on Busted. mesecons, mesecons_mvps, mesecons_fpga, and mesecons_luacontroller are tested. I don't want to add tests for every mod in the...

Fixes https://github.com/minetest-mods/mesecons/issues/596. Fixes https://github.com/minetest-mods/mesecons/issues/462. This significantly complicates the code. I had to add some special cases to replicate the old behavior. For example, when a sticky piston retracts while pulling...

bugfix
review needed

This allows mods to provide their own libraries that can be accessed from within a Luacontroller, for example to make working with advanced digilines peripherals somewhat easier. Libraries can be...

enhancement

* (And also fix invalid code in T-Flop example.) * The html was autogenerated from the md (see comment). * The images were `optipng`ed. * I don't know if there...

documentation

This allows a player to change the rules that are used to send the digililines message from the luacontroller by passing the port as the third argument to `digiline_send` Specifying...

enhancement
review needed

I think they were broken by https://github.com/minetest-mods/mesecons/pull/600, since the name of a node from the cache may now be an alias. So as not to risk slowing down the oft-called...

bugfix
dependent
review needed

All logic gates have paramtype2 = "facedir". The upper three bits of param2 are therefore unused. However, instead of using these bits to store inputs, binary logic gates store their...

enhancement

Hello I want to report a bug: When I build monolayer of "sticky blocks" on a "vertical sticky movestone" it is possible to create a simple lift (see the picture...

bug

pCall allows error catching in Luacntrollers.

enhancement