---
title: "@ClientModifiable"
---

`@ClientModifiable` is for use on **synced** settings. It marks that any user, regardless of permission level, can edit the setting and push updates to the server and other clients. **Use this annotation with caution!**

<CodeTabs>

```java !!tabs Java
@ClientModifiable
public boolean myUnImportantSetting = false;
```

```kotlin !!tabs Kotlin
@ClientModifiable
var myUnImportantSetting = false
```

</CodeTabs>

<Callout>
See the documentation page <a target="_blank" rel="noopener" href="https://fzzyhmstrs.github.io/fconfig/-fzzy%20-config/me.fzzyhmstrs.fzzy_config.annotations/-client-modifiable/index.html">here 🗗</a>
</Callout>