mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-16 18:19:55 +00:00
Apparently a normal save must exist for some reason, calling for a character to be made doesn't cause the signature to be created, and I don't know how to force create the signature (It's kinda driving me nuts)
This commit is contained in:
parent
49620968b9
commit
682c395488
1 changed files with 1 additions and 1 deletions
|
@ -659,7 +659,7 @@ namespace MWInput
|
|||
void InputManager::quickSave() {
|
||||
if(MWBase::Environment::get().getWorld()->getGlobalInt ("chargenstate")==-1) { //ensure you're not in character creation
|
||||
const MWState::Slot* slot = NULL;
|
||||
MWState::Character* mCurrentCharacter = MWBase::Environment::get().getStateManager()->getCurrentCharacter(true); //Get current character
|
||||
MWState::Character* mCurrentCharacter = MWBase::Environment::get().getStateManager()->getCurrentCharacter(false); //Get current character
|
||||
if (mCurrentCharacter) //Ensure one exists
|
||||
{
|
||||
//Find quicksave slot
|
||||
|
|
Loading…
Reference in a new issue