wixoa
wixoa
Constant vars can be reassigned by code or overridden in object definitions. ``` var/const/C = 1 world.log
The following code should output the `name` and `desc` attributes of a proc, but it currently does not work. ``` /datum/proc/foo() set name= "Proc Name" set desc = "Proc Description"...
Procs in the `/icon` object are missing implementations. - [ ] Blend - [x] ICON_ADD (#964) - [x] ICON_SUBTRACT (#964) - [x] ICON_MULTIPLY (#1009) - [x] ICON_OVERLAY (#948) - [...
When an atom with a non-identity transform has a ranged `screen_loc` (Ex: `"WEST,SOUTH to CENTER-1,CENTER-1"`), the transform should be applied to each rendered icon individually. Currently it's applied as a...
A change in #827 intended to fix #698 ended up adding a new bug in the preprocessing of whitespace. ``` #define TEST(x) /world/New() ..() var/TEST = new /obj() var/t =...
There is an undocumented `on-status` event that executes a command every time there's a new atom under your mouse. Example usage in Paradise: ``` window "mapwindow" elem "mapwindow" type =...
The server should go through the list of the game's resources on startup and make sure they exist. This would prevent non-obvious errors from occurring and make the problem more...
http://www.byond.com/docs/ref/#/world/var/maxx http://www.byond.com/docs/ref/#/world/var/maxy We currently support setting these to higher values, but not lower ones.
https://www.byond.com/docs/ref/skinparams.html > A bar that can be used to show progress, health level, magic level, etc., or used as an adjustable slider. The bar can be straight or formed into...
We fail to parse weighted picks with newlines between the weight and the value ``` icon_state = pick( prob(100) "dim", prob(200) "off", prob(100) "on") ```