mirror of
https://github.com/taoneill/war.git
synced 2024-11-13 05:54:31 +01:00
Removed the dropLootonDeath member
This commit is contained in:
parent
b303e8e540
commit
22e79c51f4
@ -70,7 +70,6 @@ public class War extends JavaPlugin {
|
||||
private int defaultScoreCap = 10;
|
||||
private int defaultMonumentHeal = 5;
|
||||
private boolean defaultBlockHeads = true;
|
||||
private boolean defaultDropLootOnDeath = false;
|
||||
private boolean defaultFriendlyFire = false;
|
||||
private boolean defaultAutoAssignOnly = false;
|
||||
private boolean defaultUnbreakableZoneBlocks = false;
|
||||
@ -785,14 +784,6 @@ public class War extends JavaPlugin {
|
||||
this.defaultBlockHeads = defaultBlockHeads;
|
||||
}
|
||||
|
||||
public boolean isDefaultDropLootOnDeath() {
|
||||
return defaultDropLootOnDeath;
|
||||
}
|
||||
|
||||
public void setDefaultDropLootOnDeath(boolean defaultDropLootOnDeath) {
|
||||
this.defaultDropLootOnDeath = defaultDropLootOnDeath;
|
||||
}
|
||||
|
||||
public boolean isDefaultFriendlyFire() {
|
||||
return defaultFriendlyFire;
|
||||
}
|
||||
|
@ -54,7 +54,6 @@ public class Warzone {
|
||||
private ZoneLobby lobby;
|
||||
private boolean autoAssignOnly;
|
||||
private boolean blockHeads;
|
||||
private boolean dropLootOnDeath;
|
||||
private boolean unbreakableZoneBlocks;
|
||||
private boolean disabled = false;
|
||||
private boolean noCreatures;
|
||||
@ -77,7 +76,6 @@ public class Warzone {
|
||||
this.scoreCap = War.war.getDefaultScoreCap();
|
||||
this.monumentHeal = War.war.getDefaultMonumentHeal();
|
||||
this.setBlockHeads(War.war.isDefaultBlockHeads());
|
||||
this.setDropLootOnDeath(War.war.isDefaultDropLootOnDeath());
|
||||
this.setUnbreakableZoneBlocks(War.war.isDefaultUnbreakableZoneBlocks());
|
||||
this.setNoCreatures(War.war.isDefaultNoCreatures());
|
||||
this.setResetOnEmpty(War.war.isDefaultResetOnEmpty());
|
||||
@ -945,14 +943,6 @@ public class Warzone {
|
||||
return this.blockHeads;
|
||||
}
|
||||
|
||||
public void setDropLootOnDeath(boolean dropLootOnDeath) {
|
||||
this.dropLootOnDeath = dropLootOnDeath;
|
||||
}
|
||||
|
||||
public boolean isDropLootOnDeath() {
|
||||
return this.dropLootOnDeath;
|
||||
}
|
||||
|
||||
public void setSpawnStyle(String spawnStyle) {
|
||||
this.spawnStyle = spawnStyle;
|
||||
for(Team team : this.teams) {
|
||||
|
@ -150,9 +150,6 @@ public class WarMapper {
|
||||
// defaultNoCreatures
|
||||
War.war.setDefaultNoCreatures(warConfig.getBoolean("defaultNoCreatures"));
|
||||
|
||||
// defaultDropLootOnDeath
|
||||
// war.setDefaultDropLootOnDeath(warConfig.getBoolean("defaultDropLootOnDeath"));
|
||||
|
||||
// defaultResetOnEmpty
|
||||
War.war.setDefaultResetOnEmpty(warConfig.getBoolean("defaultResetOnEmpty"));
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user