Skip to content

Commit

Permalink
changing the hands check on duelist melee upgrade to uses the Traits.…
Browse files Browse the repository at this point in the history
…isSame instead of regex
  • Loading branch information
Ariemeth committed Feb 7, 2024
1 parent 47924c7 commit 73e0258
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion lib/models/mods/duelist/duelist_modification.dart
Original file line number Diff line number Diff line change
Expand Up @@ -725,7 +725,7 @@ class DuelistModification extends BaseModification {
assert(rs != null);
assert(cg != null);
final hasHands =
u.traits.any((trait) => _handsMatch.hasMatch(trait.name));
u.traits.any((trait) => trait.isSameType(Trait.Hands()));
if (!hasHands) {
return false;
}
Expand Down
2 changes: 1 addition & 1 deletion lib/screens/roster/roster.dart
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ import 'package:url_launcher/url_launcher_string.dart';
const double _leftPanelWidth = 670.0;
const double _titleHeight = 40.0;
const double _menuTitleHeight = 50.0;
const String _version = '1.2.3';
const String _version = '1.2.4';
const String _bugEmailAddress = '[email protected]';
const String _dp9URL = 'https://www.dp9.com/';
const String _sourceCodeURL = 'https://github.com/Ariemeth/gearforce-flutter';
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ publish_to: "none" # Remove this line if you wish to publish to pub.dev
# Read more about iOS versioning at
# https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html

version: 1.2.3
version: 1.2.4
environment:
sdk: ">=3.0.0"

Expand Down

0 comments on commit 73e0258

Please sign in to comment.