ID:2964093
 
BYOND Version:515
Operating System:Windows 10 Pro
Web Browser:Chrome 133.0.0.0
Applies to:Dream Maker
Status: Open

Issue hasn't been assigned a status value.
Although the documentation specifies the arguments r0, g0, b0 and a0 as optional, failure to fill them in results in an error.

Code:
/mob/Login()
..()
test()

/mob/proc/test()
var/icon/I = icon('icon.dmi', "state")

I.MapColors(0,0,0, 0,0,0, 0,0,0) //okay
I.MapColors(0,0,0,1, 0,0,0,1, 0,0,0,1, 0,0,0,1, 0,0,0,0) //okay
I.MapColors(0,0,0,1, 0,0,0,1, 0,0,0,1, 0,0,0,1) //runtime error: list index out of bounds




Login to reply.