We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ガチャのイベントの期間は現在作成時に指定したらそれっきり変更ができないので、ゲーム内から変更できるようにする。
コマンドの構文 /gacha edit-event-date <イベント名> <開始日> <終了日> ※開始日、終了日の形式はyyyy-MM-dd
/gacha edit-event-date <イベント名> <開始日> <終了日>
yyyy-MM-dd
gacha_eventsテーブルのスキーマ
gacha_events
SeichiAssist/src/main/resources/db/migration/V1.14.1__Create_gacha_eventsTable.sql
Lines 1 to 9 in c09c3e6
実装手順メモ
/gacha create-event
The text was updated successfully, but these errors were encountered:
No branches or pull requests
ガチャのイベントの期間は現在作成時に指定したらそれっきり変更ができないので、ゲーム内から変更できるようにする。
コマンドの構文
/gacha edit-event-date <イベント名> <開始日> <終了日>
※開始日、終了日の形式は
yyyy-MM-dd
gacha_events
テーブルのスキーマSeichiAssist/src/main/resources/db/migration/V1.14.1__Create_gacha_eventsTable.sql
Lines 1 to 9 in c09c3e6
実装手順メモ
https://github.com/GiganticMinecraft/SeichiAssist/blob/develop/src/main/scala/com/github/unchama/seichiassist/subsystems/gachaprize/domain/gachaevent/GachaEventPersistence.scala
https://github.com/GiganticMinecraft/SeichiAssist/blob/develop/src/main/scala/com/github/unchama/seichiassist/subsystems/gachaprize/GachaPrizeAPI.scala#L49-L62
https://github.com/GiganticMinecraft/SeichiAssist/blob/develop/src/main/scala/com/github/unchama/seichiassist/subsystems/gachaprize/System.scala#L50-L88
/gacha create-event
などが参考になる)https://github.com/GiganticMinecraft/SeichiAssist/blob/develop/src/main/scala/com/github/unchama/seichiassist/subsystems/gacha/bukkit/GachaCommand.scala
The text was updated successfully, but these errors were encountered: