Skip to content

Commit

Permalink
fix: build error
Browse files Browse the repository at this point in the history
  • Loading branch information
RobbeBryssinck committed Jan 3, 2022
1 parent a8a267a commit e7c1f9a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Code/server/Services/CharacterService.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ CharacterService::CharacterService(World& aWorld, entt::dispatcher& aDispatcher)
, m_factionsChangesConnection(aDispatcher.sink<PacketEvent<RequestFactionsChanges>>().connect<&CharacterService::OnFactionsChanges>(this))
, m_spawnDataConnection(aDispatcher.sink<PacketEvent<RequestSpawnData>>().connect<&CharacterService::OnRequestSpawnData>(this))
, m_projectileLaunchConnection(aDispatcher.sink<PacketEvent<ProjectileLaunchRequest>>().connect<&CharacterService::OnProjectileLaunchRequest>(this))
, m_mountConnection(aDispatcher.sink<PacketEvent<MountRequest>>().connect<CharacterService::OnMountRequest>(this))
, m_mountConnection(aDispatcher.sink<PacketEvent<MountRequest>>().connect<&CharacterService::OnMountRequest>(this))
{
}

Expand Down

0 comments on commit e7c1f9a

Please sign in to comment.