Skip to content
This repository was archived by the owner on Jan 23, 2025. It is now read-only.

Commit c978b91

Browse files
committedJan 14, 2023
fix!: SCP-173 spawn ran into death looping
1 parent f6794ff commit c978b91

File tree

2 files changed

+14
-2
lines changed

2 files changed

+14
-2
lines changed
 

‎build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ plugins {
1313
}
1414

1515
group 'scpsharp'
16-
version '1.12'
16+
version '1.12.1'
1717
String fullVersion = "mc${project.minecraft_version}-$project.version"
1818

1919
repositories {

‎src/main/kotlin/scpsharp/content/facility/site63/piece/SCP173ContainmentRoom.kt

+13-1
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,19 @@ class SCP173ContainmentRoom : FacilityStructurePiece {
176176
}
177177
// Spawn SCP-173
178178
if (entityPos != null && entityPos in chunkBox) {
179-
world.spawnEntity(SCP173Entity.TYPE.spawn(world.toServerWorld(), entityPos, SpawnReason.STRUCTURE))
179+
val entity = SCP173Entity.TYPE.create(world.toServerWorld())
180+
if (entity != null) {
181+
entity.setPersistent()
182+
entity.refreshPositionAndAngles(
183+
entityPos.x.toDouble(),
184+
entityPos.y.toDouble(),
185+
entityPos.z.toDouble(),
186+
0.0f,
187+
0.0f
188+
)
189+
entity.initialize(world, world.getLocalDifficulty(pos), SpawnReason.STRUCTURE, null, null)
190+
world.spawnEntity(entity)
191+
}
180192
}
181193
}
182194

0 commit comments

Comments
 (0)
This repository has been archived.