Example #1
0
        public void OnRadioRepairedByMe(Radio radio)
        {
            // todo: can this apply to non-escape pod radios?

            NitroxId id = NitroxEntity.GetId(radio.gameObject);

            EscapePodRadioRepair repair = new EscapePodRadioRepair(id);

            packetSender.Send(repair);
        }
Example #2
0
        public void OnRadioRepairedByMe(Radio radio)
        {
            // todo: can this apply to non-escape pod radios?

            string guid = GuidHelper.GetGuid(radio.gameObject);

            EscapePodRadioRepair repair = new EscapePodRadioRepair(guid);

            packetSender.Send(repair);
        }