Skip to content

Commit

Permalink
FIX change transfer amount
Browse files Browse the repository at this point in the history
  • Loading branch information
ReeZer2 committed Aug 9, 2024
1 parent a7af65d commit adf21b3
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -78,8 +78,12 @@ private void AddSetTransferVerbs(Entity<SolutionTransferComponent> ent, ref GetV
var user = args.User;
foreach (var amount in DefaultTransferAmounts)
{
if (amount < comp.MinimumTransferAmount || amount > comp.MaximumTransferAmount)
// ss220 ch. amount fix start
/*
if (amount < comp.MinimumTransferAmount || amount > comp.MaximumTransferAmount)
continue;
*/
// ss220 ch. amount fix end

AlternativeVerb verb = new();
verb.Text = Loc.GetString("comp-solution-transfer-verb-amount", ("amount", amount));
Expand Down

0 comments on commit adf21b3

Please sign in to comment.