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) { if (this.bG > 0) {
return false; return false;
} else { } else {
if (!this.b.pvpMode) { if (!this.world.pvpMode) { // CraftBukkit this.b.pvpMode -> this.world.pvpMode
if (entity instanceof EntityHuman) { if (entity instanceof EntityHuman) {
return false; return false;
} }

Datei anzeigen

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

Datei anzeigen

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

Datei anzeigen

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