Skip to content

Commit 29466aa

Browse files
authored
Merge pull request #53 from NielsH/feature/laveka_north_orbit
Remove north orbit markers
2 parents 6376b93 + 747e5fb commit 29466aa

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

Encounters/RMT/Laveka.lua

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -513,8 +513,7 @@ function mod:DrawSoulEaterOrbit(index)
513513
orbitColor = "xkcdRed"
514514
end
515515
core:AddPolygon("ORBIT_"..index, ROOM_CENTER, radius.z, nil, 2, orbitColor, 40)
516-
mod:SetWorldMarker("ORBIT_"..index.."up", index, ROOM_CENTER + radius)
517-
mod:SetWorldMarker("ORBIT_"..index.."down", index, ROOM_CENTER - radius)
516+
mod:SetWorldMarker("ORBIT_"..index, index, ROOM_CENTER + radius)
518517
end
519518

520519
function mod:RemoveSoulEaterOrbits()
@@ -525,8 +524,7 @@ end
525524

526525
function mod:RemoveSoulEaterOrbit(index)
527526
core:RemovePolygon("ORBIT_"..index)
528-
mod:DropWorldMarker("ORBIT_"..index.."up")
529-
mod:DropWorldMarker("ORBIT_"..index.."down")
527+
mod:DropWorldMarker("ORBIT_"..index)
530528
end
531529

532530
function mod:OnMidphaseStart()

0 commit comments

Comments
 (0)