Revert "Re-enable debug"

This reverts commit 8f3093ea2b994a2904492ab3b66c943dc67a7fff.
This commit is contained in:
CocoTheOwner 2022-01-24 13:05:40 +01:00
parent 8f3093ea2b
commit 4ade79a307

View File

@ -43,11 +43,11 @@ public class VillageSVC implements IrisService {
*/
@EventHandler
public void on(VillagerAcquireTradeEvent event) {
if(!IrisToolbelt.isIrisWorld(event.getEntity().getWorld())) {
if(!IrisToolbelt.isIrisWorld((event.getEntity().getWorld()))) {
return;
}
Iris.info("Trade event: type " + event.getRecipe().getResult().getType() + " / meta " + event.getRecipe().getResult().getItemMeta() + " / data " + event.getRecipe().getResult().getData());
// Iris.info("Trade event: type " + event.getRecipe().getResult().getType() + " / meta " + event.getRecipe().getResult().getItemMeta() + " / data " + event.getRecipe().getResult().getData());
if(!event.getRecipe().getResult().getType().equals(Material.FILLED_MAP)) {
return;
}