Skip to content

Commit

Permalink
[F] 修复随机排序bug
Browse files Browse the repository at this point in the history
  • Loading branch information
hykilpikonna committed Aug 24, 2018
1 parent 635b058 commit eb3d2d2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/cc/moecraft/utils/HyExpressionResolver.java
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ public static String resolve(String raw)
while (matcher.find())
{
String[] rpTag = matcher.group().split(",");
Map<Double, String> texts = new HashMap<>();
Map<Double, String> texts = new LinkedHashMap<>();

double max = 0;
for (int i = 0; i < rpTag.length; i += 2)
Expand Down

0 comments on commit eb3d2d2

Please sign in to comment.