Added per world PVP setting support.

Dieser Commit ist enthalten in:
Rigby 2011-04-29 23:34:37 +01:00 committet von EvilSeph
Ursprung 5a5ce79035
Commit f342db744a
4 geänderte Dateien mit 11 neuen und 1 gelöschten Zeilen

Datei anzeigen

@ -132,7 +132,7 @@ public class EntityPlayer extends EntityHuman implements ICrafting {
if (this.bG > 0) {
return false;
} else {
if (!this.b.pvpMode) {
if (!this.world.pvpMode) { // CraftBukkit this.b.pvpMode -> this.world.pvpMode
if (entity instanceof EntityHuman) {
return false;
}

Datei anzeigen

@ -57,6 +57,7 @@ public class World implements IBlockAccess {
private int J = 0;
public boolean allowMonsters = true; // CraftBukkit private->public
public boolean allowAnimals = true; // CraftBukkit private->public
public boolean pvpMode; // CraftBukkit
static int u = 0;
private Set M = new HashSet();
private int N;

Datei anzeigen

@ -26,6 +26,7 @@ public class WorldServer extends World implements BlockChangeDelegate {
this.cserver = minecraftserver.server;
this.world = new CraftWorld(this);
this.manager = new PlayerManager(minecraftserver, this);
this.pvpMode = minecraftserver.pvpMode;
}
public PlayerManager manager;

Datei anzeigen

@ -612,4 +612,12 @@ public class CraftWorld implements World {
public long getSeed() {
return world.worldData.b();
}
public boolean getPVP() {
return world.pvpMode;
}
public void setPVP(boolean pvp) {
world.pvpMode = pvp;
}
}