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