summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2022-05-17 23:22:06 -0300
committerJesusaves <cpntb1@ymail.com>2022-05-17 23:22:06 -0300
commitb252c4e956b952d5fc4b3526aa6100ec3332a9d0 (patch)
tree7b0ab4d4034fa493e7310a2a430ab8065119cb81
parent6588034308225de78c7d4a44116ef709e2351a6f (diff)
downloadserverdata-b252c4e956b952d5fc4b3526aa6100ec3332a9d0.tar.gz
serverdata-b252c4e956b952d5fc4b3526aa6100ec3332a9d0.tar.bz2
serverdata-b252c4e956b952d5fc4b3526aa6100ec3332a9d0.tar.xz
serverdata-b252c4e956b952d5fc4b3526aa6100ec3332a9d0.zip
Remove some useless clutter
-rw-r--r--npc/craft/price.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/npc/craft/price.txt b/npc/craft/price.txt
index 6e1474008..1471ffd99 100644
--- a/npc/craft/price.txt
+++ b/npc/craft/price.txt
@@ -58,7 +58,7 @@ function script _fix_cPrice {
// Update the final price
if (.@price > 0) {
- consoleinfo("Price for %s adjusted from %d (%d) to %d (%d) GP", getitemname(.@item), getiteminfo(.@item, ITEMINFO_BUYPRICE), getiteminfo(.@item, ITEMINFO_SELLPRICE), .@price * .@m / 10, .@price);
+ debugmes("Price for %s adjusted from %d (%d) to %d (%d) GP", getitemname(.@item), getiteminfo(.@item, ITEMINFO_BUYPRICE), getiteminfo(.@item, ITEMINFO_SELLPRICE), .@price * .@m / 10, .@price);
setiteminfo(.@item, ITEMINFO_BUYPRICE, .@price * .@m / 10);
setiteminfo(.@item, ITEMINFO_SELLPRICE, .@price);
//debugmes("New Price for %s is now %d (%d) GP", getitemname(.@item), getiteminfo(.@item, ITEMINFO_BUYPRICE), getiteminfo(.@item, ITEMINFO_SELLPRICE));