forgot to fix module spawn timer
1 files changed, 1 insertions(+), 1 deletions(-) M server/src/component.rs
M server/src/component.rs => server/src/component.rs +1 -1
@@ 75,7 75,7 @@ pub struct PlayerBundle { pub struct ModuleTimer(pub Timer); impl ModuleTimer { pub fn new() -> Self { - Self(Timer::from_seconds(0.03, TimerMode::Repeating)) + Self(Timer::from_seconds(3.0, TimerMode::Repeating)) } } impl Default for ModuleTimer {