mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-02-28 09:39:42 +00:00
[Client] Disable clientside disabling and enabling of objects
This commit is contained in:
parent
5043fb4246
commit
04ba324290
1 changed files with 20 additions and 2 deletions
|
@ -608,7 +608,16 @@ namespace MWScript
|
|||
End of tes3mp addition
|
||||
*/
|
||||
|
||||
MWBase::Environment::get().getWorld()->enable (ref);
|
||||
/*
|
||||
Start of tes3mp change (major)
|
||||
|
||||
Disable unilateral state enabling on this client and expect the server's reply to our
|
||||
packet to do it instead
|
||||
*/
|
||||
//MWBase::Environment::get().getWorld()->enable (ref);
|
||||
/*
|
||||
End of tes3mp change (major)
|
||||
*/
|
||||
}
|
||||
|
||||
void InterpreterContext::disable (const std::string& id)
|
||||
|
@ -636,7 +645,16 @@ namespace MWScript
|
|||
End of tes3mp addition
|
||||
*/
|
||||
|
||||
MWBase::Environment::get().getWorld()->disable (ref);
|
||||
/*
|
||||
Start of tes3mp change (major)
|
||||
|
||||
Disable unilateral state disabling on this client and expect the server's reply to our
|
||||
packet to do it instead
|
||||
*/
|
||||
//MWBase::Environment::get().getWorld()->disable (ref);
|
||||
/*
|
||||
End of tes3mp change (major)
|
||||
*/
|
||||
}
|
||||
|
||||
int InterpreterContext::getMemberShort (const std::string& id, const std::string& name,
|
||||
|
|
Loading…
Reference in a new issue