[+] ExtBool2

pull/110/head
Azalea 2025-01-17 08:06:48 -05:00
parent 1801c25fdc
commit 3a4651adcd
2 changed files with 4 additions and 0 deletions

View File

@ -507,6 +507,8 @@ class Mai2UserPlaylog : Mai2UserEntity(), IGenericGamePlaylog {
@JsonProperty("extBool1")
var extBool1 = false
@JsonProperty("extBool2")
var extBool2 = false
override val isFullCombo: Boolean
get() = maxCombo == totalCombo

View File

@ -0,0 +1,2 @@
ALTER TABLE maimai2_user_playlog ADD COLUMN ext_bool2 BIT(1) DEFAULT 0;