fixed fishing spot calculation patrons no longer have captchas on the public bot Upped version to 5.3.6
12 lines
No EOL
317 B
C#
12 lines
No EOL
317 B
C#
namespace EllieBot.Modules.Games;
|
|
|
|
public sealed class FishResult
|
|
{
|
|
public required FishData Fish { get; init; }
|
|
public int Stars { get; init; }
|
|
public bool IsSkillUp { get; set; }
|
|
public int Skill { get; set; }
|
|
public int MaxSkill { get; set; }
|
|
}
|
|
|
|
public readonly record struct AlreadyFishing; |