/** Hatch this kaiju. DOES NOT add it to the user metadata */ /*public void hatch(OwnedEgg egg) * { * if (_helpers == null) _helpers = new IdList(egg.Helpers); * } * * public bool isHatched() * { * return _helpers != null; * } */ /** Adds the friend user ID to the list of friends who helped this egg hatch, * if that friend does not already exist in that list. */ public void addHelper(string friendUserId) { Debug.Log(_helpers.containsId(friendUserId)); if (!_helpers.containsId(friendUserId)) { _helpers.add(friendUserId); } }