This repository has been archived on 2022-08-05. You can view files and clone it, but cannot push or open issues or pull requests.
LaptopSimulator2015/CaptchaGlitch_Double/Double.cs

17 lines
503 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Base;
namespace LaptopSimulator2015.Glitches
{
public class Double : CaptchaGlitch
{
public double chance { get { if (currentLevel < 1) return 0; return Math.Min(currentLevel / 8d, 0.8); } }
public int currentLevel { get; set; }
public void apply(char inputChar, ref string inputString, char[] captchaChars) => inputString += inputChar;
}
}