diff options
author | joffrey-bion <joffrey.bion@gmail.com> | 2021-02-12 01:40:01 +0100 |
---|---|---|
committer | joffrey-bion <joffrey.bion@gmail.com> | 2021-02-12 01:59:12 +0100 |
commit | faec8b33c0366d65848bdca264c9a3f5f5d102a6 (patch) | |
tree | c193fef242036f4d35a8dfcf4a86aff2638b49b4 /sw-client/build.gradle.kts | |
parent | Fix pulsing red (remove incorrect preparedMove field) (diff) | |
download | seven-wonders-faec8b33c0366d65848bdca264c9a3f5f5d102a6.tar.gz seven-wonders-faec8b33c0366d65848bdca264c9a3f5f5d102a6.tar.bz2 seven-wonders-faec8b33c0366d65848bdca264c9a3f5f5d102a6.zip |
Fix race when bots leave game
Diffstat (limited to 'sw-client/build.gradle.kts')
-rw-r--r-- | sw-client/build.gradle.kts | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/sw-client/build.gradle.kts b/sw-client/build.gradle.kts index 68953bc4..f29fcbf8 100644 --- a/sw-client/build.gradle.kts +++ b/sw-client/build.gradle.kts @@ -8,6 +8,9 @@ kotlin { browser() // necessary for local dependency from JS UI module } sourceSets { + all { + languageSettings.useExperimentalAnnotation("kotlin.RequiresOptIn") + } val commonMain by getting { dependencies { api(project(":sw-common-model")) |