Skip to content
Snippets Groups Projects
Verified Commit 80d47a9a authored by Janne Mareike Koschinski's avatar Janne Mareike Koschinski
Browse files

fix: correct wrongly tagged methods in networkconfig

parent bf753adf
Branches
Tags
No related merge requests found
......@@ -94,7 +94,7 @@ interface INetworkConfig : ISyncableObject {
)
}
@SyncedCall(target = ProtocolSide.CORE)
@SyncedCall(target = ProtocolSide.CLIENT)
fun setAutoWhoNickLimit(limit: Int) {
sync(
target = ProtocolSide.CORE,
......@@ -112,7 +112,7 @@ interface INetworkConfig : ISyncableObject {
)
}
@SyncedCall(target = ProtocolSide.CORE)
@SyncedCall(target = ProtocolSide.CLIENT)
fun setMaxPingCount(count: Int) {
sync(
target = ProtocolSide.CORE,
......@@ -130,7 +130,7 @@ interface INetworkConfig : ISyncableObject {
)
}
@SyncedCall(target = ProtocolSide.CORE)
@SyncedCall(target = ProtocolSide.CLIENT)
fun setPingInterval(interval: Int) {
sync(
target = ProtocolSide.CORE,
......@@ -148,7 +148,7 @@ interface INetworkConfig : ISyncableObject {
)
}
@SyncedCall(target = ProtocolSide.CORE)
@SyncedCall(target = ProtocolSide.CLIENT)
fun setPingTimeoutEnabled(enabled: Boolean) {
sync(
target = ProtocolSide.CORE,
......@@ -166,7 +166,7 @@ interface INetworkConfig : ISyncableObject {
)
}
@SyncedCall(target = ProtocolSide.CORE)
@SyncedCall(target = ProtocolSide.CLIENT)
fun setStandardCtcp(enabled: Boolean) {
sync(
target = ProtocolSide.CORE,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment