Skip to content

Commit 99a2def

Browse files
authored
Prevent navigator nodes from showing in create room category listing
Fixes #78
1 parent cf1fca4 commit 99a2def

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

Kepler-Server/src/main/java/org/alexdev/kepler/messages/incoming/navigator/GETUSERFLATCATS.java

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,10 @@ public void handle(Player player, NettyRequest reader) {
2424
continue;
2525
}
2626

27+
if (category.isNode()) {
28+
continue;
29+
}
30+
2731
categoryList.add(category);
2832
}
2933

0 commit comments

Comments
 (0)