Skip to content

Commit

Permalink
[ui] hide enter level log message for first level
Browse files Browse the repository at this point in the history
  • Loading branch information
nroutasuo committed Mar 27, 2023
1 parent 0f5c666 commit 682ddc1
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/game/systems/LevelStatusSystem.js
Original file line number Diff line number Diff line change
Expand Up @@ -179,6 +179,8 @@ define([
let entity = GameGlobals.levelHelper.getLevelEntityForPosition(level);
let levelComponent = entity.get(LevelComponent);

if (level == 13) return null;

if (levelComponent.isCampable) {
return "There are enough signs of life on this level that it should be possible to find a spot for a camp.";
} else {
Expand Down

0 comments on commit 682ddc1

Please sign in to comment.