Skip to content

Commit

Permalink
fix: fix client build
Browse files Browse the repository at this point in the history
  • Loading branch information
OEOTYAN committed Oct 9, 2024
1 parent 75ad3b5 commit 7d583c0
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 7 deletions.
10 changes: 5 additions & 5 deletions src-client/mc/world/actor/Actor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -7,30 +7,30 @@
#include "ll/api/memory/Memory.h"

#include "mc/_HeaderOutputPredefine.h"
#include "mc/common/HitDetection.h"
#include "mc/deps/core/math/Vec2.h"
#include "mc/deps/core/math/Vec3.h"
#include "mc/deps/core/utility/optional_ref.h"
#include "mc/deps/ecs/gamerefs_entity/EntityContext.h"
#include "mc/entity/components/FlagComponent.h"
#include "mc/entity/systems/OnFireSystem.h"
#include "mc/entity/utilities/ActorCollision.h"
#include "mc/entity/utilities/ActorLocation.h"
#include "mc/server/ServerLevel.h"
#include "mc/server/commands/CommandUtils.h"
#include "mc/server/commands/RotationData.h"
#include "mc/server/commands/standard/TeleportCommand.h"
#include "mc/server/commands/standard/TeleportTarget.h" // IWYU pragma: keep for TeleportCommand::computeTarget
#include "mc/util/ExpressionNode.h"
#include "mc/util/rotation_command_utils/RotationData.h"
#include "mc/world//actor/player/Player.h"
#include "mc/world/actor/ActorDamageByActorSource.h"
#include "mc/world/actor/ActorDamageCause.h"
#include "mc/world/actor/ActorDefinitionIdentifier.h"
#include "mc/world/components/FlagComponent.h"
#include "mc/world/actor/ActorLocation.h"
#include "mc/world/actor/provider/ActorCollision.h"
#include "mc/world/level/BlockPos.h"
#include "mc/world/level/BlockSource.h"
#include "mc/world/level/ClipDefaults.h"
#include "mc/world/level/ShapeType.h"
#include "mc/world/level/dimension/Dimension.h"
#include "mc/world/phys/HitDetection.h"
#include "mc/world/phys/HitResult.h"

class EntityContext& Actor::getEntityContext() { return ll::memory::dAccess<EntityContext>(this, 8); }
Expand Down
2 changes: 0 additions & 2 deletions src/mc/world/level/ChangeDimensionRequest.h
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,5 @@ class ChangeDimensionRequest {

MCAPI class ChangeDimensionRequest& operator=(class ChangeDimensionRequest&& other);

MCAPI ~ChangeDimensionRequest();

// NOLINTEND
};

0 comments on commit 7d583c0

Please sign in to comment.