Added webchat-interval for JsonFileClientUpdateComponent (which should fix sendmessage.php)
This commit is contained in:
parent
b79df3d898
commit
65cde3fa1e
2 changed files with 4 additions and 0 deletions
|
|
@ -15,6 +15,7 @@ components:
|
||||||
# sendhealth: true
|
# sendhealth: true
|
||||||
# sendposition: true
|
# sendposition: true
|
||||||
# allowwebchat: false
|
# allowwebchat: false
|
||||||
|
# webchat-interval: 5
|
||||||
# hidewebchatip: false
|
# hidewebchatip: false
|
||||||
|
|
||||||
- class: org.dynmap.SimpleWebChatComponent
|
- class: org.dynmap.SimpleWebChatComponent
|
||||||
|
|
|
||||||
|
|
@ -57,6 +57,9 @@ public class JsonFileClientUpdateComponent extends ClientUpdateComponent {
|
||||||
public void triggered(JSONObject t) {
|
public void triggered(JSONObject t) {
|
||||||
s(t, "jsonfile", true);
|
s(t, "jsonfile", true);
|
||||||
s(t, "allowwebchat", allowwebchat);
|
s(t, "allowwebchat", allowwebchat);
|
||||||
|
|
||||||
|
// For 'sendmessage.php'
|
||||||
|
s(t, "webchat-interval", configuration.getFloat("webchat-interval", 5.0f));
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
plugin.events.addListener("initialized", new Event.Listener<Object>() {
|
plugin.events.addListener("initialized", new Event.Listener<Object>() {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue