Compare commits

...

1 Commits

Author SHA1 Message Date
bc0146663b schematic change 2022-11-13 12:42:52 -05:00

View File

@@ -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;
}