For some reason I am having a problem with the nor gate in a bundle
Do you mean with the Nor Gate?
It was probably autocorrect
You need to explain what isn’t working about them and the link to your game so we can see it too.
Special tip: I don’t recommend using messages to activate gates behaviors.
yes, messages can cause delays and you can’t input 0’s into a logic gate
Learnings from JR01
It’s not really the messages that causes delay, they don’t, the problem is often caused by behavior order.
Sorry, I had to go and didn’t have a lot of time…
It was pretty much a bug in a bundle, in a bundle. I’ve heard some other problems with this also. I have figured out a way to get around it, but I wanted the bug to be fixed for all other users. Sorry that I didn’t explain it very well.
I put one input into a with it turned into a NOR gate, and the gate still activates whether the A is on/off
It’s a behavior order thing, it’s not the easier thing to fully understand at first. Basically the engine reads things left to right, top to bottom. What’s happening here is that the NOR is getting read before the input is actually being read. It’s a weird thing, and messages make it weirder because they go off of the original message X,Y (I think). So it’s not really a bug, but more so a complicated reasoning of the engine. But without knowing how it works, it does seem very much like a bug.