Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ internal class PlayerObjectOwnerNP(private val obj: PlayerObject) : MongoPersist
bb.addInt(maxMeds) // 15
bb.addObject(groupWaypoints) // 16
bb.addInt(jediState) // 17
bb.incrementOperandCount(19)
bb.incrementOperandCount(18)
}

fun parseBaseline9(buffer: NetBuffer) {
Expand Down Expand Up @@ -223,6 +223,7 @@ internal class PlayerObjectOwnerNP(private val obj: PlayerObject) : MongoPersist
craftingStage = data.getInteger("craftingStage", craftingStage)
nearbyCraftStation = data.getLong("nearbyCraftStation", nearbyCraftStation)
draftSchematics.putAll(data.getMap("draftSchematics", Long::class.java, Int::class.java))
draftSchematics.resetUpdateCount() // If we don't do this, the client will display 0 draft schematics after a server reboot for all players
craftingComponentBioLink = data.getLong("craftingComponentBioLink", craftingComponentBioLink)
experimentPoints = data.getInteger("experimentPoints", experimentPoints)
expModified = data.getInteger("expModified", expModified)
Expand Down