diff --git a/src/components/Player.vue b/src/components/Player.vue
index cae71ca..7cf8cac 100644
--- a/src/components/Player.vue
+++ b/src/components/Player.vue
@@ -132,11 +132,10 @@
Rename
-
+
Remove
-
Move player
@@ -145,10 +144,7 @@
Swap seats
-
-
- {{ player.isOnBlock ? "Take off block" : "Put on block" }}
-
+
Nomination
@@ -272,7 +268,7 @@ export default {
if (!this.player.isDead) {
this.updatePlayer("isDead", true);
if (this.player.isOnBlock) {
- this.toggleOnBlock();
+ this.updatePlayer("isOnBlock", false);
}
} else if (this.player.isVoteless) {
this.updatePlayer("isVoteless", false);
@@ -283,7 +279,7 @@ export default {
} else {
this.updatePlayer("isDead", !this.player.isDead);
if (this.player.isOnBlock) {
- this.toggleOnBlock();
+ this.updatePlayer("isOnBlock", false);
}
if (this.player.isVoteless) {
this.updatePlayer("isVoteless", false);
@@ -339,10 +335,6 @@ export default {
this.isMenuOpen = false;
this.$emit("trigger", ["claimSeat"]);
},
- toggleOnBlock() {
- this.isMenuOpen = false;
- this.$emit("trigger", ["toggleOnBlock"]);
- },
/**
* Allow the ST to override a locked vote.
*/