Skip to content

Commit c855907

Browse files
committed
Fix conflict with Hallucinogen
I have answered the age-old question of are drugs or black holes stronger. The answer is the game crashes.
1 parent 6e248a9 commit c855907

File tree

1 file changed

+1
-9
lines changed

1 file changed

+1
-9
lines changed

src/progressed/graphics/renders/BlackHoleRenderer.java

+1-9
Original file line numberDiff line numberDiff line change
@@ -23,20 +23,12 @@ public BlackHoleRenderer(){ //TODO setting
2323
buffer = new FrameBuffer();
2424

2525
Events.run(Trigger.draw, () -> {
26-
Draw.draw(Layer.min, () -> {
26+
Draw.draw(Layer.min + 0.01f, () -> {
2727
buffer.resize(graphics.getWidth(), graphics.getHeight());
2828
buffer.begin();
2929
});
3030

3131
Draw.draw(Layer.max, () -> {
32-
/*for(BlackHoleZone zone : zones){
33-
Fill.light(
34-
zone.x, zone.y,
35-
Lines.circleVertices(zone.outRadius), zone.outRadius,
36-
Tmp.c1.abgr8888(zone.color).a(0.5f), Tmp.c2.abgr8888(zone.color).a(0)
37-
);
38-
}*/
39-
4032
buffer.end();
4133

4234
if(zones.size >= GravitationalLensingShader.len) PMShaders.createBlackholeShader();

0 commit comments

Comments
 (0)