NPC safezone sell% = 0

This commit is contained in:
2024-08-31 19:12:22 -05:00
parent ed150a5ccd
commit 362832a196
+5 -1
View File
@@ -122,7 +122,11 @@ public class NPC extends AbstractCharacter {
// this.buyPercent = rs.getFloat("npc_buyPercent");
this.buyPercent = .33f;
this.sellPercent = 1;
if(ZoneManager.findSmallestZone(this.loc) != null && ZoneManager.findSmallestZone(this.loc).getSafeZone() == 1){
this.sellPercent = 0;
}else{
this.sellPercent = 1;
}
this.setRot(new Vector3f(0, rs.getFloat("npc_rotation"), 0));