Outfit Map should actually be a regular HashMap

This commit is contained in:
MetricExpansion 2022-11-13 14:45:45 -08:00
parent f174f004b2
commit a159f7b1d6

View file

@ -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,
}