= Fixed plugin output

This commit is contained in:
Matthew Cech
2019-05-20 15:21:39 -07:00
parent 1df71ef61d
commit b71debb9d2
4 changed files with 33 additions and 24 deletions
+4 -1
View File
@@ -90,7 +90,10 @@ public class Main extends ListenerAdapter
List<String> pluginOutput = pluginManager.RunAll(input.message, user);
if(pluginOutput != null && pluginOutput.size() > 0)
response.Call(pluginOutput.get(0));
{
for(int i = 0; i < pluginOutput.size(); ++i)
response.Call(pluginOutput.get(i));
}
}
// Run any upkeep in post we need to