Quietust
Quietust
I pointed out in Discord that this message should probably **not** be logged for any classes inside the DFHack namespace (which will require separate logic on Windows versus Linux).
Extremely preliminary script for improvement 1: ``` local gems = {} -- Find all crystal-glassable gem types for i,v in pairs(df.global.world.raws.inorganics) do if v.material.flags.CRYSTAL_GLASSABLE then table.insert(gems, i) end end --...
I'm pretty sure the function you reverse-engineered is actually `void capitalize_string_words(string &str)`, straight out of `g_src/basics.cpp` (which also contains functions "upper_case_string" and "lower_case_string" which work very similarly).
Toady's name for this vmethod is `perimdestroyer`, which seems consistent with the interpretation of "stands next to the building during [de]construction instead of on top of it".
Is the intent to determine whether a stone is *marked* as economic (and would be excluded by most jobs) or whether the stone **has** potential economic uses (i.e. if the...
At the very least, the following things will need to be changed: * The entrypoint - previously, you used a custom hotkey from the Units screen (which no longer exists)...
To clarify, the vermin items are somehow ending up with a race of `-1` and a caste consisting of the specified race. The bug is entirely inside `gui/create-item.lua` and/or `modtools/create-item.lua`,...
They're both calling the same code inside the `Items` module - the only difference is in how they translate user-provided inputs into numeric IDs, and I'm not sure whether it...
"Feature update to Windows 10, version 1809" has a similar problem - it shows up as 89.05 GB, which cannot possibly be correct.
Looking at the Toady headers, it appears that these flags have multiple meanings depending on what kind of features are inside. For River features, there are two flags "SOURCE" and...