// Request the start of a vote
 public override void PrimaryInteraction(Character voteLeader)
 {
     if (votingManager == null)
     {
         votingManager = GameObject.Find("/VotingManager").GetComponent <VotingManager>();
     }
     votingManager.InitVote(View.ViewID, voteLeader.GetComponent <PhotonView>().ViewID);
 }