Outfit Map should actually be a regular HashMap
This commit is contained in:
parent
f174f004b2
commit
a159f7b1d6
1 changed files with 2 additions and 1 deletions
|
|
@ -1,3 +1,4 @@
|
|||
use std::collections::HashMap;
|
||||
use crate::{
|
||||
interface::ffi::{
|
||||
OptionalPolicy, OptionalStateType, StateType, TESObjectARMOPtr, WeatherFlags,
|
||||
|
|
@ -305,7 +306,7 @@ impl Default for ActorAssignments {
|
|||
|
||||
pub struct OutfitService {
|
||||
pub enabled: bool,
|
||||
pub outfits: HashedMap<UncasedString, Outfit>,
|
||||
pub outfits: HashMap<UncasedString, Outfit>,
|
||||
pub actor_assignments: HashedMap<RE_ActorFormID, ActorAssignments>,
|
||||
pub location_switching_enabled: bool,
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue