mirror of
https://github.com/PlaceholderAPI/PlaceholderAPI
synced 2025-10-07 23:55:27 +02:00
Fixes ecloud placeholders command (#201)
* fix parsing placeholders on ecloud placeholders command * try catch on registering expansions Co-authored-by: aBo0oDyy <35378106+aBo0oDyy@users.noreply.github.com>
This commit is contained in:
@@ -241,7 +241,11 @@ public class ExpansionCloudCommands implements CommandExecutor {
|
||||
} else {
|
||||
message.then(color(placeholders.get(i) + "&b, &f"));
|
||||
}
|
||||
message.tooltip(PlaceholderAPI.setPlaceholders(p, placeholders.get(i)));
|
||||
try {
|
||||
message.tooltip(PlaceholderAPI.setPlaceholders(p, placeholders.get(i)));
|
||||
} catch (Exception e) {
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
message.send(p);
|
||||
|
Reference in New Issue
Block a user