chrisgbk
chrisgbk
https://github.com/Afforess/Factorio-Stdlib/blob/f371fc4e339376416d13fd434e623cdfecd8d250/stdlib/event/event.lua#L68 Should be: `error('Detected attempt to register an event using script.' .. name .. ' while using the STDLIB event system ' .. (id and id or ''))` If this...
An enhancement that was discussed in discord for some special use cases, such as flashing individual EEPROM chips.
In 12.0, following is valid: ``` #subruledef reg { x{val: u4} => val`4 } #ruledef test { test {imm: u8} => imm testasm {R1: reg}, {R2: reg} => asm{test (R1...
``` #subruledef subtest { {x: s32} => { 255`32 } } #ruledef test { test {a: s32} => a testasm {a: subtest} => asm{test {a}} test2 {a: subtest} => a...
```lua local test = { ["a"] = true, ["2147483648"] = true, ["9223372036854775808"] = true } print(serpent.block(test)) ``` The sorting function invoked by serpent.block will try to convert string keys that...