Skip to content

Pretty sure in "chance of failure" the > is round the wrong way. #9

@danbudworthmead

Description

@danbudworthmead

if (value > chanceOfFailure) { return State.Failure; } return State.Success;

Currently, you have this when it should be

if (value < chanceOfFailure) { return State.Failure; } return State.Success;

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions