Fix deprecation warnings.
This commit is contained in:
parent
8b44b58e35
commit
f665ead732
|
@ -18,7 +18,7 @@ use bevy::{
|
|||
prelude::*,
|
||||
};
|
||||
use once_cell::sync::Lazy;
|
||||
use rand::{prelude::*, thread_rng};
|
||||
use rand::{prelude::*, rng};
|
||||
use serde::{Deserialize, Serialize};
|
||||
|
||||
#[derive(Component, Clone, Debug, Default, Reflect)]
|
||||
|
@ -562,7 +562,7 @@ where
|
|||
type Item = T;
|
||||
|
||||
fn next(&mut self) -> Option<Self::Item> {
|
||||
let mut rng = thread_rng();
|
||||
let mut rng = rng();
|
||||
self.0.shuffle(&mut rng);
|
||||
self.0.first().cloned()
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user