1 files changed, 1 insertions, 1 deletions
diff --git a/LibMatrix/Helpers/RoomBuilder.cs b/LibMatrix/Helpers/RoomBuilder.cs
index bef7568..71eed69 100644
--- a/LibMatrix/Helpers/RoomBuilder.cs
+++ b/LibMatrix/Helpers/RoomBuilder.cs
@@ -40,7 +40,7 @@ public class RoomBuilder {
/// </summary>
public Dictionary<string, string?> Invites { get; set; } = new();
- public RoomPowerLevelEventContent PowerLevels { get; init; } = new() {
+ public RoomPowerLevelEventContent PowerLevels { get; set; } = new() {
EventsDefault = 0,
UsersDefault = 0,
Kick = 50,
|