From bc0146663bc8184db1cfc05b91d5684f04dc5720 Mon Sep 17 00:00:00 2001 From: littlefoot Date: Sun, 13 Nov 2022 12:42:52 -0500 Subject: [PATCH] schematic change --- src/main/java/mod/sin/wyvern/schematics/Schematics.java | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/main/java/mod/sin/wyvern/schematics/Schematics.java b/src/main/java/mod/sin/wyvern/schematics/Schematics.java index 4eb538e..cfa8903 100644 --- a/src/main/java/mod/sin/wyvern/schematics/Schematics.java +++ b/src/main/java/mod/sin/wyvern/schematics/Schematics.java @@ -13,6 +13,7 @@ import mod.sin.lib.Util; import mod.sin.wyvern.ItemMod; import org.gotti.wurmunlimited.modloader.classhooks.HookManager; import org.gotti.wurmunlimited.modsupport.ModSupportDb; +import com.wurmonline.server.items.CreationEntry; import java.sql.Connection; import java.sql.PreparedStatement; @@ -65,8 +66,8 @@ public class Schematics { public static boolean checkSchematic(Creature performer, int product) { if(requiresASchematic(product)) { if(!playerKnowsSchematic(performer, product)) { - performer.getCommunicator().sendNormalServerMessage("You don't know how to make " + ItemTemplateFactory.getInstance().getTemplateName(product) + - ". Try finding a schematic for the item."); + //performer.getCommunicator().sendNormalServerMessage("You don't know how to make " + ItemTemplateFactory.getInstance().getTemplateName(product) + + // ". Try finding a schematic for the item."); logger.info("Player " + performer.getName() + " does not have schematic for " + ItemTemplateFactory.getInstance().getTemplateName(product)); return false; }