NPC buy/sell use DB values

This commit is contained in:
2024-04-12 20:01:01 -05:00
parent ed7e7be3e8
commit 8cdd4910ca
+2 -2
View File
@@ -121,8 +121,8 @@ public class NPC extends AbstractCharacter {
// this.buyPercent = rs.getFloat("npc_buyPercent");
this.buyPercent = .33f;
this.sellPercent = 1;
this.buyPercent = rs.getFloat("npc_buyPercent");
this.sellPercent = rs.getFloat("npc_sellPercent");
this.setRot(new Vector3f(0, rs.getFloat("npc_rotation"), 0));