Compare commits
No commits in common. "d981b7dcff2070ae315e6302522e00ac1c9d906d" and "85c73c22c8ac35df85211ea720adcd992fa7a5ae" have entirely different histories.
d981b7dcff
...
85c73c22c8
|
|
@ -1,5 +1,4 @@
|
||||||
import {Component} from '@angular/core';
|
import {Component} from '@angular/core';
|
||||||
import {ScrollService} from '../scroll/scroll.service';
|
|
||||||
|
|
||||||
@Component({
|
@Component({
|
||||||
selector: 'app-about',
|
selector: 'app-about',
|
||||||
|
|
@ -8,6 +7,5 @@ import {ScrollService} from '../scroll/scroll.service';
|
||||||
styleUrl: './about.component.scss'
|
styleUrl: './about.component.scss'
|
||||||
})
|
})
|
||||||
export class AboutComponent {
|
export class AboutComponent {
|
||||||
constructor(public scrollService: ScrollService) {
|
scrollService: any;
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,4 @@
|
||||||
import {Component} from '@angular/core';
|
import {Component} from '@angular/core';
|
||||||
import {ScrollService} from '../scroll/scroll.service';
|
|
||||||
|
|
||||||
@Component({
|
@Component({
|
||||||
selector: 'app-privacy',
|
selector: 'app-privacy',
|
||||||
|
|
@ -8,7 +7,6 @@ import {ScrollService} from '../scroll/scroll.service';
|
||||||
styleUrl: './privacy.component.scss'
|
styleUrl: './privacy.component.scss'
|
||||||
})
|
})
|
||||||
export class PrivacyComponent {
|
export class PrivacyComponent {
|
||||||
constructor(public scrollService: ScrollService) {
|
scrollService: any;
|
||||||
}
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -193,9 +193,8 @@
|
||||||
chunkloaders are prohibited.</p>
|
chunkloaders are prohibited.</p>
|
||||||
<p style="margin-bottom: 0;">We have a system in place to restrict the number of mobs that can be in a
|
<p style="margin-bottom: 0;">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
|
certain area. Please do not try to circumvent this system. Additionally, mob grinder holding chambers must
|
||||||
be either 1x1 or 1x2 blocks in size. <a style="cursor: pointer;" (click)="toggleExceptions()">Show
|
be either 1x1 or 1x2 blocks in size. <a style="cursor: pointer;" id="ruleButton">Show exceptions...</a></p>
|
||||||
exceptions...</a></p>
|
<ul id="exceptions" class="full-page-list hide">
|
||||||
<ul id="exceptions" class="full-page-list" [ngClass]="{'hide': !showExceptions}">
|
|
||||||
<li>Magma kill chamber may be up to 3x3</li>
|
<li>Magma kill chamber may be up to 3x3</li>
|
||||||
<li>Hoglin kill chamber may be up to 2x2</li>
|
<li>Hoglin kill chamber may be up to 2x2</li>
|
||||||
<li>Enderman kill chamber may be up to 3x3</li>
|
<li>Enderman kill chamber may be up to 3x3</li>
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,4 @@
|
||||||
import {Component} from '@angular/core';
|
import {Component} from '@angular/core';
|
||||||
import {ScrollService} from '../scroll/scroll.service';
|
|
||||||
|
|
||||||
@Component({
|
@Component({
|
||||||
standalone: false,
|
standalone: false,
|
||||||
|
|
@ -8,12 +7,5 @@ import {ScrollService} from '../scroll/scroll.service';
|
||||||
styleUrl: './rules.component.scss'
|
styleUrl: './rules.component.scss'
|
||||||
})
|
})
|
||||||
export class RulesComponent {
|
export class RulesComponent {
|
||||||
showExceptions: boolean = false;
|
scrollService: any;
|
||||||
|
|
||||||
constructor(public scrollService: ScrollService) {
|
|
||||||
}
|
|
||||||
|
|
||||||
public toggleExceptions() {
|
|
||||||
this.showExceptions = !this.showExceptions;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,4 @@
|
||||||
import {Component} from '@angular/core';
|
import {Component} from '@angular/core';
|
||||||
import {ScrollService} from '../scroll/scroll.service';
|
|
||||||
|
|
||||||
@Component({
|
@Component({
|
||||||
selector: 'app-socials',
|
selector: 'app-socials',
|
||||||
|
|
@ -8,6 +7,5 @@ import {ScrollService} from '../scroll/scroll.service';
|
||||||
styleUrl: './socials.component.scss'
|
styleUrl: './socials.component.scss'
|
||||||
})
|
})
|
||||||
export class SocialsComponent {
|
export class SocialsComponent {
|
||||||
constructor(public scrollService: ScrollService) {
|
scrollService: any;
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,4 @@
|
||||||
import {Component} from '@angular/core';
|
import {Component} from '@angular/core';
|
||||||
import {ScrollService} from '../scroll/scroll.service';
|
|
||||||
|
|
||||||
@Component({
|
@Component({
|
||||||
selector: 'app-team',
|
selector: 'app-team',
|
||||||
|
|
@ -8,6 +7,5 @@ import {ScrollService} from '../scroll/scroll.service';
|
||||||
styleUrl: './team.component.scss'
|
styleUrl: './team.component.scss'
|
||||||
})
|
})
|
||||||
export class TeamComponent {
|
export class TeamComponent {
|
||||||
constructor(public scrollService: ScrollService) {
|
scrollService: any;
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,4 @@
|
||||||
import {Component} from '@angular/core';
|
import {Component} from '@angular/core';
|
||||||
import {ScrollService} from '../scroll/scroll.service';
|
|
||||||
|
|
||||||
@Component({
|
@Component({
|
||||||
selector: 'app-terms',
|
selector: 'app-terms',
|
||||||
|
|
@ -8,7 +7,6 @@ import {ScrollService} from '../scroll/scroll.service';
|
||||||
styleUrl: './terms.component.scss'
|
styleUrl: './terms.component.scss'
|
||||||
})
|
})
|
||||||
export class TermsComponent {
|
export class TermsComponent {
|
||||||
constructor(public scrollService: ScrollService) {
|
scrollService: any;
|
||||||
}
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user