Christopher Head
Christopher Head
Ah, yes, that was my change, wasn’t it? Yes, it does unfortunately break existing builds, but I submitted it thinking that the improvement was worthwhile (IMO the old string-based message...
Personally, I guess I see there being three options: 1. Only report the complete contents of the chest when asked, plus maybe a message saying it changed. 2. Only report...
I have Minetest 0.4.17.1 and Digilines 434010bdd0362b79a67a07a2055d690c50d9311f. I put this code on a Luacontroller: ```lua print("=====") function dump(x) if type(x) == "table" then print("{") for k,v in pairs(x) do print(k...
434010bdd0362b79a67a07a2055d690c50d9311f has this metadata: ``` Author: Christopher Head AuthorDate: Fri Oct 20 00:24:32 2017 -0700 Commit: Auke Kok CommitDate: Tue Mar 5 22:04:56 2019 -0800 ``` so I guess Github...
To be clear: @TangentFoxy are you seeing something other than what I posted above, using the same commit (434010bdd0362b79a67a07a2055d690c50d9311f)?
Back to topic, though, my real question was: @TangentFoxy, you said “On taking a stack with more than one item, two messages come through, one with the correct number of...
Not promising I’d have time or anything, but if I did, would you accept PRs?
> I re-read the documentation for `SetServiceStatus` today and it makes this one statement: Yes, I read that paragraph too. However, the problem is that the control handler might *already...
Yes, a global holding something like a `Mutex` would do the job. You could fill it in `register` and then drop it in the control handler on `SERVICE_CONTROL_STOP` and co,...
> Correct me if I am wrong, but I don't think `ServiceMain` is obliged to be blocking. The service could spawn a secondary thread and do all processing there and...