Skip to content

Commit

Permalink
Fixed compile error
Browse files Browse the repository at this point in the history
  • Loading branch information
StewStrong committed Nov 12, 2023
1 parent c8f16eb commit 7155e68
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,11 @@ import org.valkyrienskies.mod.mixin.accessors.entity.EntityAccessor
open class VSPhysicsEntity(type: EntityType<VSPhysicsEntity>, level: Level) : Entity(type, level) {
// Physics data, persistent
protected var physicsEntityData: PhysicsEntityData? = null
private set

// The physics entity, transient, only exists server side after this entity has been added to a world
protected var physicsEntityServer: PhysicsEntityServer? = null
private set

private var lerpPos: Vector3dc? = null
private var lerpSteps = 0
Expand Down

0 comments on commit 7155e68

Please sign in to comment.