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:
@@ -29,6 +29,7 @@ pub struct WeaponData {
|
|||||||
pub repeat_fire_inaccuracy_decay: Option<f32>,
|
pub repeat_fire_inaccuracy_decay: Option<f32>,
|
||||||
#[serde(alias="repeat_fire_inaccuracy_recovery_time")]
|
#[serde(alias="repeat_fire_inaccuracy_recovery_time")]
|
||||||
pub repeat_fire_innaccuracy_recovery: Option<f32>,
|
pub repeat_fire_innaccuracy_recovery: Option<f32>,
|
||||||
|
#[serde(alias="fire_instant_accuracy_decay_degrees")]
|
||||||
pub fire_instant_accuracy_decay: Option<f32>, // degrees
|
pub fire_instant_accuracy_decay: Option<f32>, // degrees
|
||||||
pub accuracy_non_recover_time: Option<f32>,
|
pub accuracy_non_recover_time: Option<f32>,
|
||||||
#[serde(alias="accuracy_decay_time")]
|
#[serde(alias="accuracy_decay_time")]
|
||||||
|
|||||||
@@ -7,7 +7,7 @@ pub(super) fn power_bar_provider() -> SimpleFunc<51, crate::UserTy, impl (Fn(Par
|
|||||||
SimpleFunc::new(|params, _| {
|
SimpleFunc::new(|params, _| {
|
||||||
let mut params = params.to_dict();
|
let mut params = params.to_dict();
|
||||||
params.insert(PARAM_KEY, Typed::HashMap(vec![
|
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 */)),
|
(Typed::Str("powerForAllRobots".into()), Typed::Int(12_550 /* converted to u32 */)),
|
||||||
].into()
|
].into()
|
||||||
));
|
));
|
||||||
|
|||||||
Reference in New Issue
Block a user