mirror of
https://github.com/LBPUnion/ProjectLighthouse.git
synced 2025-08-12 23:08:40 +00:00
fix typo
This commit is contained in:
parent
f1d8413d36
commit
3f557cd911
2 changed files with 2 additions and 2 deletions
|
@ -41,7 +41,7 @@ namespace LBPUnion.ProjectLighthouse.Helpers {
|
||||||
return Encoding.ASCII.GetString(header) switch {
|
return Encoding.ASCII.GetString(header) switch {
|
||||||
"TEX" => LbpFileType.Texture,
|
"TEX" => LbpFileType.Texture,
|
||||||
"FSH" => LbpFileType.Script,
|
"FSH" => LbpFileType.Script,
|
||||||
"VOB" => LbpFileType.Voice,
|
"VOP" => LbpFileType.Voice,
|
||||||
"LVL" => LbpFileType.Level,
|
"LVL" => LbpFileType.Level,
|
||||||
"PLN" => LbpFileType.Plan,
|
"PLN" => LbpFileType.Plan,
|
||||||
_ => LbpFileType.Unknown,
|
_ => LbpFileType.Unknown,
|
||||||
|
|
|
@ -5,7 +5,7 @@ namespace LBPUnion.ProjectLighthouse.Types.Files {
|
||||||
Level, // LVL
|
Level, // LVL
|
||||||
FileArchive, // .farc, (ends with FARC)
|
FileArchive, // .farc, (ends with FARC)
|
||||||
Plan, // PLN, uploaded with levels
|
Plan, // PLN, uploaded with levels
|
||||||
Voice, // VOB, voice data
|
Voice, // VOP, voice data
|
||||||
Unknown,
|
Unknown,
|
||||||
}
|
}
|
||||||
}
|
}
|
Loading…
Add table
Add a link
Reference in a new issue