diff --git a/frontend/src/components/Lobby.vue b/frontend/src/components/Lobby.vue
index 754df94..9508ff2 100644
--- a/frontend/src/components/Lobby.vue
+++ b/frontend/src/components/Lobby.vue
@@ -56,8 +56,8 @@
{{$t('mods')}}
{{$t('mod_comp')}}
{{$t('bots')}}
- {this.$socket.emit('chat_message', '/addbot')}"/>
- {this.$socket.emit('chat_message', '/removebot')}"/>
+ {this.$socket.emit('chat_message', '/addbot'); e.preventDefault()}"/>
+ {this.$socket.emit('chat_message', '/removebot'); e.preventDefault()}"/>
diff --git a/frontend/src/components/Player.vue b/frontend/src/components/Player.vue
index 5e430e4..df3ccf4 100644
--- a/frontend/src/components/Player.vue
+++ b/frontend/src/components/Player.vue
@@ -248,7 +248,7 @@ export default {
is_equipment: true,
noDesc: true,
}]
- this.hand.filter(x => x.can_be_used_now && (this.expected_response.indexOf(x.name) !== -1 || this.character.name === "Elena Fuente")).forEach(x=>{
+ this.hand.filter(x => (x.can_be_used_now && this.expected_response.indexOf(x.name) !== -1) || this.character.name === "Elena Fuente").forEach(x=>{
cc.push(x)
})
this.equipment.filter(x => x.usable_next_turn && x.can_be_used_now && this.expected_response.indexOf(x.name) !== -1).forEach(x=>{