Browse Source

Merge d54fcac90f into 5a08031caf

pull/8343/merge
Eric Robinson 4 days ago committed by GitHub
parent
commit
7ecaa585a9
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 2
      Source/msg.cpp
  2. 4
      docs/CHANGELOG.md

2
Source/msg.cpp

@ -1914,7 +1914,7 @@ size_t OnResurrect(const TCmdParam1 &message, Player &caster)
return sizeof(message);
}
if (playerIdx >= Players.size())
if (playerIdx >= Players.size() || !caster.isOnActiveLevel())
return sizeof(message);
Player &target = Players[playerIdx];

4
docs/CHANGELOG.md

@ -14,6 +14,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Bug Fixes
#### Multiplayer
- Resurrect beams appear on levels it wasn't cast on
#### Graphics / Audio
- Music doesn't unmute when focus is lost on level transition with Auto Pause On Focus Lost disabled

Loading…
Cancel
Save