Search Issue Tracker
Feature Request
Votes
0
Found in [Package]
multiplayer-playmode-1.5.0-exp.1
netcode-1.4.0
Issue ID
MTTB-1163
Regression
Yes
Error "Received a ghost - GhostPrefab (1) - from the server which has a different hash on the client. GhostPrefab: Entity(234:1) ('')." is present when running in Play Mode or Standalone Player
Reproduction steps:
1. Open the attached project "ReproProj"
2. Open the “/Assets/Scenes/SampleScene.unity” Scene
3. Go to Window > Multiplayer > PlayMode Tools
4. Set the Play mode type to “Client&Server“
5. Set the Server emulation to “DedicatedServer”
6. Enter the Play Mode
7. Observe the Console
Expected result: No Errors exist
Actual result: Error “Received a ghost - GhostPrefab (1) - from the server which has a different hash on the client (got 949530699641332863 but expected 8428808711639168711). GhostPrefab: Entity(234:1) ('').“ is present
Reproducible with: 1.3.2 (2022.3.60f1), 1.5.0-exp.101 (2022.3.60f1)
Reproducible on:
Play Mode
Windows Standalone Player
Testing environment: Windows 10 Enterprise 21H2
Not reproducible on: No other environment tested
Add comment
All about bugs
View bugs we have successfully reproduced, and vote for the bugs you want to see fixed most urgently.
Latest issues
- Exceedingly long wait when importing large audio file
- TextMeshPro text input's caret is flickering when Line Mode is set to Multi Line and text is selected
- Can’t delete gradient keys with Mac keyboard or context menu options
- UI Overlaps when switching Render Pipeline Asset for different Quality Levels in Quality Project Settings
- Ray Tracing Shader link to the documentation isn’t working
Resolution Note:
This is unfortunately a known issue with prespawned parented ghost prefabs. The fix from our side will take some foundational work that we have on our radar, but will take some time to do.
In the meantime as a workaround, there are two options.
1. In the GhostParent prefab, you can ensure that the nested GhostPrefab's are named the same. This is because we use the distinguish different prefabs of the same type, but since these prefabs are actually the same due to nested prefabs, there is some undefined behaviour going on.
2. Don't use multiple nested ghost prefabs in a parent prefab. You could parent them in the scene directly to organize them.