Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
Anteccq committed Dec 30, 2021
2 parents 8df1946 + 75f9ea1 commit a2d9021
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 3 deletions.
11 changes: 11 additions & 0 deletions ApexVersion.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
using System;
using System.Collections.Generic;
using System.Text;

namespace ApexRandomBot
{
public class ApexVersion
{
public const string SupportedVersion = "11";
}
}
2 changes: 1 addition & 1 deletion GachaModules.cs
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ public async Task All()
public async Task HelpAsync()
{
var footer = new EmbedFooterBuilder()
.WithText("シーズン10まで対応しています。");
.WithText($"シーズン{ApexVersion.SupportedVersion}まで対応しています。");

var eb = new EmbedBuilder()
{
Expand Down
3 changes: 2 additions & 1 deletion Legend.cs
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,8 @@ public class Legend : IGacha{
"クリプト",
"ヒューズ",
"ヴァルキリー",
"シア"
"シア",
"アッシュ"
};

public Legend() => _rand = GatchaUtil.GenerateRandom();
Expand Down
3 changes: 2 additions & 1 deletion Weapon.cs
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,8 @@ public class Weapon : IGacha{
"ウィングマン",
"30-30 リピーター",
"ボセックボウ",
"ランページLMG"
"ランページLMG",
"C.A.R. SMG"
};

public Weapon() => _rand = GatchaUtil.GenerateRandom();
Expand Down

0 comments on commit a2d9021

Please sign in to comment.