Missed one.

This commit is contained in:
Vexatos 2017-05-24 18:29:32 +02:00
parent ac756b6770
commit 8f660dddef

View File

@ -100,7 +100,7 @@ class RobotProxy extends RedstoneAware with traits.StateAware {
val components = info.containers ++ info.components
if (components.length > 0) {
tooltip.addAll(Tooltip.get("server.Components"))
for (component <- components if component != null) {
for (component <- components if !component.isEmpty) {
tooltip.add("- " + component.getDisplayName)
}
}