ike709
ike709
Updating the app on iOS causes songs that are already downloaded pre-update (and could be played just fine before the update) to no longer function. The playtime does not advance,...
Essentially just revives https://github.com/OpenDreamProject/OpenDream/pull/2208 with some key differences: - No merge conflicts (yet) - Does not do `as params` at all. This PR is large enough as-is and I don't...
Nukes `DMASTFolder`. It's deprecated and removing it shaves a consistent 6 seconds off my third-run TG compile time (45s -> 39s). This uncovered an OD bug in the following preprocessed...
Resolves #1996 I tested that this removes the exception by nuking the `macro` from testgame. I did not test whether this fix requires move involved changes to the active macro...
OpenDream currently emits `null` for both logs, as `::` is performing `initial()` on a list (always null) rather than creating a new list like BYOND does: This breaks various `allowed`...
``` datum var foo = 1 bar = 0 proc meep() return foo beep() return bar ``` This code results in `/datum/var` and `/datum/proc` being added to `DMObjectTree` as types....