Skip to content

Commit

Permalink
> Fixed: another overlay issue
Browse files Browse the repository at this point in the history
+Update
  • Loading branch information
Cediner committed Mar 16, 2024
1 parent 4109c55 commit b1c6b37
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions src/haven/Gob.java
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ private void init() {

private void add0() {
if (added)
throw (new IllegalStateException());
return;
added = true;
}

Expand Down Expand Up @@ -210,7 +210,7 @@ public void draw(GOut g) {}

private void remove0() {
if (!added)
throw (new IllegalStateException());
return;
// if(slots != null) {
// RUtils.multirem(new ArrayList<>(slots));
// slots = null;
Expand Down Expand Up @@ -966,7 +966,7 @@ public void ctick(int dt) {
} else {
boolean done = ol.spr.tick(dt);
if ((!ol.delign || (ol.spr instanceof Overlay.CDel) || (ol.spr instanceof Sprite.CDel)) && done)
ol.remove();
ol.remove(this);
}
}

Expand Down
Binary file modified update/build/hafen.jar
Binary file not shown.
4 changes: 2 additions & 2 deletions update/ver
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
472ba2b5040273412d67361f5dc445aa502b1fc8
4109c55403184812407faa45413cb10ddf71b09f
bin/python/libcrypto-1_1.dll=594303e2ce6a4a02439054c84592791bf4ab0b7c12e9bbdb4b040e27251521f1
bin/python/libssl-1_1.dll=9d4cf1c03629f92662fc8d7e3f1094a7fc93cb41634994464b853df8036af843
bin/python/LICENSE.txt=e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
Expand Down Expand Up @@ -42,7 +42,7 @@ build/gluegen-rt-natives-windows-i586.jar=c0b6af64fbc1676e30d8598284eda4c617c31f
build/gluegen-rt.jar=29a325957f01cf5b1a44e5662455185010886805f215d5a8f122a8b5eb877bfb
build/graal-sdk.jar=9d7b7e390cc13551c4c040ea8147da02d02434d441c14636e8d9a495d97625bd
build/graaljs.jar=4cef00a4af23bb514209e590822ecc7b0e792ccddb0725f8f30168772202fd20
build/hafen.jar=47c0fc4d7eabc0ecf3ab09dce0f4d7d1502a5a1e2d7cf72a83abf3b43d9a95a4
build/hafen.jar=8a82400f376d9cd3a4f1cf958b4e35a235c5e4ed3485205937e78f8783f288d2
build/haven-config.properties=7d59e55c83a9fd7f0205863e888671267d75cb858414410899edd43006145380
build/HavenDiscord.jar=6b0afde896b7a81e0892fc1685f8b2119ea22a26773fb1f1a3c09e036f0efa33
build/jackson-core.jar=256ff34118ab292d1b4f3ee4d2c3e5e5f0f609d8e07c57e8ad1f51c46d4fbb46
Expand Down

0 comments on commit b1c6b37

Please sign in to comment.