diff options
author | metamuffin <metamuffin@disroot.org> | 2024-09-18 16:16:58 +0200 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2024-09-18 16:16:58 +0200 |
commit | 9d1c30cf9ef5a057c760da49b52312de4a5afc6a (patch) | |
tree | f6532fd40259f7e54d068a656f3aaecf98c22682 /server/src/entity/campaign.rs | |
parent | fb6ca2a4b9d78dd80dbdf37b2926d9ede4108e8b (diff) | |
download | hurrycurry-9d1c30cf9ef5a057c760da49b52312de4a5afc6a.tar hurrycurry-9d1c30cf9ef5a057c760da49b52312de4a5afc6a.tar.bz2 hurrycurry-9d1c30cf9ef5a057c760da49b52312de4a5afc6a.tar.zst |
prevent multiple tutorials at once
Diffstat (limited to 'server/src/entity/campaign.rs')
-rw-r--r-- | server/src/entity/campaign.rs | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/server/src/entity/campaign.rs b/server/src/entity/campaign.rs index 5d669a4d..2e45e650 100644 --- a/server/src/entity/campaign.rs +++ b/server/src/entity/campaign.rs @@ -123,6 +123,12 @@ impl GateCondition { o } GateCondition::Stars(map, thres) => { + // TODO what if the language wants map first? + // trm!( + // "s.campaign.condition.stars", + // s = thres.to_string(), + // s = map.to_string() + // ) format!("Reach at least {thres} stars in {map}") } } |