Skip to content

Commit

Permalink
fix: build errors
Browse files Browse the repository at this point in the history
  • Loading branch information
RobbeBryssinck committed May 10, 2022
1 parent 94a00a7 commit cfcb75e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Code/client/Games/References.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ float CalculateRealDamage(Actor* apHittee, float aDamage) noexcept

float realDamage = aDamage;

if (fabs(aDamage) <= 0.000099999997 || DifficultyMultiplier < 1.0)
if (fabs(aDamage) <= 0.000099999997 || multiplier < 1.0)
realDamage = aDamage * multiplier;

return realDamage;
Expand Down
2 changes: 2 additions & 0 deletions Code/server/Events/PlayerJoinEvent.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
#pragma once

#include <Structs/GameId.h>

struct Player;

/**
Expand Down

0 comments on commit cfcb75e

Please sign in to comment.