---------------------
--JD's Mount function
---------------------

function CheckAndMount(mount)
		if player:hasBuff(mount) then 
			printf("Already Mounted on %s\n", mount);
		else
			inventory:useItem(mount);
			printf("Not Mounted on %s will mount!\n", mount);
		end;
end