/obj/parent
var/datum/parent/objs_datum = null
/obj/parent/child1
/datum/parent/child1/objs_datum = null
I am in need of help on the question, of how to redefine a type of variable.
Basically, a parent has variable objs_datum, it's type is /datum/parent, I need the child of the object, to have objs_datum type be set to /datum/parent/child1
You should be setting the type to the lowest level interface possible.