using UnityEngine;
using System.Collections;
using System.Collections.Generic;
using System.Linq;
using Janus;

[Script(ScriptRole.Logic)]
public class SpikeotopsEggLogic : MonoBehaviour
{
	void OnHit (HitInfo hit)
	{
		// Return if the source object is null, always good to check in case a disconnection happens near the time of the hit
		if (hit.SourceObject == null)
			return;

		// With the Vital Tags set, only a Dino could possibly trigger this function call, so we know DinoLogic is on the source object
		DinoLogic dino = hit.SourceObject.GetComponent<DinoLogic>();

		if (dino.HasEgg.LastValue)
			return;

		dino.HasEgg[0] = true;
		Sync.Despawn(gameObject);
	}
}