mirror of
https://github.com/garbagemule/MobArena.git
synced 2024-11-27 04:55:25 +01:00
replaceAll => replace for dollar sign compatibility.
This commit is contained in:
parent
22a8f43fce
commit
9c411a21ad
@ -1,7 +1,7 @@
|
|||||||
name: MobArena
|
name: MobArena
|
||||||
author: garbagemule
|
author: garbagemule
|
||||||
main: com.garbagemule.MobArena.MobArena
|
main: com.garbagemule.MobArena.MobArena
|
||||||
version: 0.95.5.22
|
version: 0.95.5.23
|
||||||
softdepend: [Multiverse-Core,Towny,Heroes,MagicSpells,Vault]
|
softdepend: [Multiverse-Core,Towny,Heroes,MagicSpells,Vault]
|
||||||
commands:
|
commands:
|
||||||
ma:
|
ma:
|
||||||
|
@ -94,13 +94,13 @@ public enum Msg {
|
|||||||
}
|
}
|
||||||
|
|
||||||
public String format(String s) {
|
public String format(String s) {
|
||||||
return toString().replaceAll("%", s);
|
return toString().replace("%", s);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void load(ConfigurationSection config) {
|
static void load(ConfigurationSection config) {
|
||||||
for (Msg msg : values()) {
|
for (Msg msg : values()) {
|
||||||
// ARENA_END_GLOBAL => arena-end-global
|
// ARENA_END_GLOBAL => arena-end-global
|
||||||
String key = msg.name().toLowerCase().replaceAll("_","-");
|
String key = msg.name().toLowerCase().replace("_","-");
|
||||||
msg.set(config.getString(key, ""));
|
msg.set(config.getString(key, ""));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -109,7 +109,7 @@ public enum Msg {
|
|||||||
YamlConfiguration yaml = new YamlConfiguration();
|
YamlConfiguration yaml = new YamlConfiguration();
|
||||||
for (Msg msg : values()) {
|
for (Msg msg : values()) {
|
||||||
// ARENA_END_GLOBAL => arena-end-global
|
// ARENA_END_GLOBAL => arena-end-global
|
||||||
String key = msg.name().replaceAll("_","-").toLowerCase();
|
String key = msg.name().replace("_","-").toLowerCase();
|
||||||
yaml.set(key, msg.value);
|
yaml.set(key, msg.value);
|
||||||
}
|
}
|
||||||
return yaml;
|
return yaml;
|
||||||
|
Loading…
Reference in New Issue
Block a user