RobustToolbox
RobustToolbox copied to clipboard
Entity<T> can be created from EntityUid causing NRE
trafficstars
if i have this function
void Thing(Entity<T> ent) {}
just passing an EntityUid is allowed, and will create (uid, null)
it should either be a compile error or become (uid, Comp<T>(uid)) since this only gets caught at runtime