mirror of
https://github.com/TES3MP/TES3MP.git
synced 2025-09-29 08:00:56 -04:00
Handle the "land" soundgen type
This commit is contained in:
parent
705498ec24
commit
d9a9c3d6bd
@ -388,6 +388,8 @@ namespace MWClass
|
|||||||
return 5;
|
return 5;
|
||||||
if(name == "scream")
|
if(name == "scream")
|
||||||
return 6;
|
return 6;
|
||||||
|
if(name == "land")
|
||||||
|
return 7;
|
||||||
|
|
||||||
throw std::runtime_error(std::string("Unexpected soundgen type: ")+name);
|
throw std::runtime_error(std::string("Unexpected soundgen type: ")+name);
|
||||||
}
|
}
|
||||||
|
@ -807,6 +807,8 @@ namespace MWClass
|
|||||||
return "";
|
return "";
|
||||||
if(name == "scream")
|
if(name == "scream")
|
||||||
return "";
|
return "";
|
||||||
|
if(name == "land")
|
||||||
|
return "";
|
||||||
|
|
||||||
throw std::runtime_error(std::string("Unexpected soundgen type: ")+name);
|
throw std::runtime_error(std::string("Unexpected soundgen type: ")+name);
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user