Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions InventoryKamera/game/Character.cs
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ public bool HasValidName()

public bool HasValidLevel()
{
return 1 <= Level && Level <= 90;
return 1 <= Level && Level <= 100;
}

public bool HasValidElement()
Expand Down Expand Up @@ -158,7 +158,7 @@ public int AscensionLevel()
{
return 5;
}
else if (Level <= 90 || (Level == 90 && !Ascended))
else if (Level <= 100 || (Level == 100 && !Ascended))
{
return 6;
}
Expand All @@ -180,4 +180,4 @@ public override string ToString()
return output;
}
}
}
}