ID:262229
 
Code:
obj/Letter_Panel
layer=127
icon='Letters.dmi'
Nullness
icon='set_up_background.dmi'
New(client/C)
for(var/V in icon_states(src.icon))
var/obj/Letter_Panel/Nullness/N=new
N.icon_state = V
N.screen_loc = "[V]"
C+=N


Problem description:
Alright, how would I go about adding that to the client. I tried...

new/obj/Letter_Panel/Nullness(src)


..but that just added a hell-lota errors upon calling the proc. So, can someone help me fix this piece of {bleep}.
obj/Letter_Panel
layer=127
icon='Letters.dmi'
Nullness
icon='set_up_background.dmi'
New(client/C)
for(var/V in icon_states(src.icon))
var/obj/Letter_Panel/Nullness/N=new // That would make a new Nullness which would then make another making a infinite loop of Nullnesses being created.