TryPasteFromVector3 not working?Solved

I've been trying to get a simple building pasted but I cannot get this part to work. TryPasteFromSteamID seems to work just fine, but when I try a Vector3 nothing happens. The output doesn't turn into a string so I'm not sure what is going on. Am I doing something wrong or is it a known bug? 

[ChatCommand("test")]
		private void TestCommand1(BasePlayer player, string command, string[] args)
		{
			Vector3 position = player.transform.position;
			
			List<string> options = new List<string>{ "stability", "false" };
			
			SendReply(player, "[DEBUG] Placing at: " + position.ToString());
			
			var success = CopyPaste.Call("TryPasteFromVector3", position, 0.0, "raid1", options.ToArray());
			
			if(success is string)
			{
				SendReply(player, "[DEBUG] Unable to place");
			}

		}

 

0.0 is a double and hook requires a float

I don't know how I missed that. Thanks for all your work, this is definitely one of the most useful plugins out there. 

Locked automatically