1
0
mirror of https://git.ngram.ca/OpenJam/rc-servers synced 2026-08-23 23:08:52 +00:00

Set refill rate to multiple of power bar, not absolute; fix #25

This commit is contained in:
NG (Graham)
2025-08-17 12:57:14 -04:00
parent a721aac418
commit 2674ab4035
2 changed files with 2 additions and 1 deletions

View File

@@ -7,7 +7,7 @@ pub(super) fn power_bar_provider() -> SimpleFunc<51, crate::UserTy, impl (Fn(Par
SimpleFunc::new(|params, _| {
let mut params = params.to_dict();
params.insert(PARAM_KEY, Typed::HashMap(vec![
(Typed::Str("refillRatePerSecond".into()), Typed::Float(1255.0)),
(Typed::Str("refillRatePerSecond".into()), Typed::Float(0.10)), // should take 10s to refill
(Typed::Str("powerForAllRobots".into()), Typed::Int(12_550 /* converted to u32 */)),
].into()
));