Fixed boss hint not disappearing

This commit is contained in:
Anuken 2020-11-23 15:47:15 -05:00
parent ec19381c4e
commit 06929ee8f3
2 changed files with 2 additions and 1 deletions

View File

@ -363,7 +363,7 @@ public class Blocks implements ContentList{
sandWall = new StaticWall("sand-wall"){{
variants = 2;
sandWater.asFloor().wall = this;
sandWater.asFloor().wall = water.asFloor().wall = deepwater.asFloor().wall = this;
}};
saltWall = new StaticWall("salt-wall");

View File

@ -146,6 +146,7 @@ public class Teams{
public void updateTeamStats(){
present.clear();
boss = null;
for(Team team : Team.all){
TeamData data = team.data();