mirror of
https://github.com/EngineHub/WorldGuard.git
synced 2024-11-24 03:25:24 +01:00
Replaced some tabs with spaces
This commit is contained in:
parent
881dc38a18
commit
3341574e02
@ -84,10 +84,10 @@ regions:
|
||||
waterflow: on
|
||||
|
||||
iconomy:
|
||||
enable: on
|
||||
buy-on-claim: on
|
||||
# Price per Block for buying on claim
|
||||
buy-on-claim-price: 2
|
||||
enable: on
|
||||
buy-on-claim: on
|
||||
# Price per Block for buying on claim
|
||||
buy-on-claim-price: 2
|
||||
|
||||
blacklist:
|
||||
logging:
|
||||
|
@ -38,4 +38,3 @@ commands:
|
||||
buyregion:
|
||||
description: Buy a buyable region
|
||||
usage: /<command> <region id> [info]
|
||||
|
@ -138,7 +138,12 @@ private Map<String, String> getFlagData(String name)
|
||||
* @return State
|
||||
*/
|
||||
public State get(String flag) {
|
||||
State state = State.valueOf(getFlagData("states").get(flag));
|
||||
String value = getFlagData("states").get(flag);
|
||||
if(value == null)
|
||||
{
|
||||
return State.NONE;
|
||||
}
|
||||
State state = State.valueOf(value);
|
||||
if (state == null) {
|
||||
return State.NONE;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user