FSO.SimAntics.NetPlay.Model.Commands.VMNetEODMessageCmd.Verify C# (CSharp) Method

Verify() public method

public Verify ( VM vm, VMAvatar caller ) : bool
vm VM
caller VMAvatar
return bool
        public override bool Verify(VM vm, VMAvatar caller)
        {
            if (Verified == true) return true; //temporary... forward messages through tick broadcast
            //only run by server. Forward message to this avatar's connected EOD.
            if (caller == null) return false;
            vm.EODHost.Deliver(this, caller);
            return false;
        }