OpenDream icon indicating copy to clipboard operation
OpenDream copied to clipboard

Passing any argument to an `/image` subtype constructor should override all subtype definitions

Open amylizzle opened this issue 9 months ago • 0 comments

https://www.byond.com/forum/post/2923118

/image/subtype
    alpha = 100

/proc/main()
    var/image/subtype/a = new /image/subtype
    var/image/subtype/b = new /image/subtype("test_arg")

    world.log << a.alpha
    world.log << b.alpha

BYOND outputs

100
255

amylizzle avatar Apr 30 '24 19:04 amylizzle