mirror of
https://github.com/Outer-Wilds-New-Horizons/new-horizons.git
synced 2025-12-11 20:15:44 +01:00
Fix unreachable code
This commit is contained in:
parent
343e376329
commit
2183c28669
@ -465,12 +465,14 @@ namespace NewHorizons.Utility.DebugMenu
|
||||
{
|
||||
switch(type)
|
||||
{
|
||||
case NomaiTextArcInfo.NomaiTextArcType.Stranger: return NomaiTextBuilder.GetGhostArcPrefabs().Count();
|
||||
case NomaiTextArcInfo.NomaiTextArcType.Child: return NomaiTextBuilder.GetChildArcPrefabs().Count();
|
||||
case NomaiTextArcInfo.NomaiTextArcType.Stranger:
|
||||
return NomaiTextBuilder.GetGhostArcPrefabs().Count();
|
||||
case NomaiTextArcInfo.NomaiTextArcType.Child:
|
||||
return NomaiTextBuilder.GetChildArcPrefabs().Count();
|
||||
default:
|
||||
case NomaiTextArcInfo.NomaiTextArcType.Adult: return NomaiTextBuilder.GetArcPrefabs().Count();
|
||||
case NomaiTextArcInfo.NomaiTextArcType.Adult:
|
||||
return NomaiTextBuilder.GetArcPrefabs().Count();
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
|
||||
void UpdateConversationTransform(ConversationMetadata conversationMetadata, GameObject sectorParent)
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user