diff --git a/frontend/src/app/rules/rules.component.html b/frontend/src/app/rules/rules.component.html
index 759e9d5..ebe2838 100644
--- a/frontend/src/app/rules/rules.component.html
+++ b/frontend/src/app/rules/rules.component.html
@@ -193,8 +193,9 @@
chunkloaders are prohibited.
We have a system in place to restrict the number of mobs that can be in a
certain area. Please do not try to circumvent this system. Additionally, mob grinder holding chambers must
- be either 1x1 or 1x2 blocks in size. Show exceptions...
-
+ be either 1x1 or 1x2 blocks in size. Show
+ exceptions...
+
- Magma kill chamber may be up to 3x3
- Hoglin kill chamber may be up to 2x2
- Enderman kill chamber may be up to 3x3
diff --git a/frontend/src/app/rules/rules.component.ts b/frontend/src/app/rules/rules.component.ts
index 6b3af12..5f9f4af 100644
--- a/frontend/src/app/rules/rules.component.ts
+++ b/frontend/src/app/rules/rules.component.ts
@@ -8,6 +8,12 @@ import {ScrollService} from '../scroll/scroll.service';
styleUrl: './rules.component.scss'
})
export class RulesComponent {
+ showExceptions: boolean = false;
+
constructor(public scrollService: ScrollService) {
}
+
+ public toggleExceptions() {
+ this.showExceptions = !this.showExceptions;
+ }
}