Merge branch 'dev' into main
This commit is contained in:
		
						commit
						c375924f31
					
				| @ -290,7 +290,7 @@ def chat_message(sid, msg): | ||||
|                     ses.character = [c for c in chs if c.name == ' '.join(cmd[1:])][0] | ||||
|                     ses.real_character = ses.character | ||||
|                     ses.notify_self() | ||||
|             elif '/setevent' in msg and ses.game and ses.game.deck: | ||||
|             elif '/setevent' in msg and ses.game and ses.game.deck: # /setevent (position) 0 (name) Peyote | ||||
|                 cmd = msg.split() | ||||
|                 if len(cmd) >= 3: | ||||
|                     sio.emit('chat_message', room=ses.game.name, data={'color': f'red','text':f'🚨 {ses.name} is in debug mode and changed event'}) | ||||
|  | ||||
| @ -24,7 +24,7 @@ | ||||
| 					<div v-else-if="p.is_ghost" class="tiny-health"> | ||||
| 						<span>👻</span> | ||||
| 					</div> | ||||
| 					<Card :card="p.card" :donotlocalize="true" :class="{is_my_turn:p.is_my_turn}"/> | ||||
| 					<Card :card="p.card" @click.native="drawFromPlayer(p.name)"  :donotlocalize="true" :class="{is_my_turn:p.is_my_turn}"/> | ||||
| 					<Card v-if="p.character" :card="p.character" class="character tiny-character" @click.native="selectedInfo = [p.character]"/> | ||||
| 					<Card v-if="p.character && p.character.name !== p.real_character.name" style="transform:scale(0.5) translate(-90px, -50px);" :card="p.character" class="character tiny-character" @click.native="selectedInfo = [p.character]"/> | ||||
| 					<tiny-hand :ncards="p.ncards" @click.native="drawFromPlayer(p.name)" :ismyturn="p.pending_action === 2"/> | ||||
| @ -43,7 +43,8 @@ | ||||
| 				<!-- </div> --> | ||||
| 			<!-- </div> --> | ||||
| 			<div v-if="!started"> | ||||
| 				<p v-if="players.length < 3" class="center-stuff">{{$t('minimum_players')}}</p> | ||||
| 				<p v-if="players.length < 3" class="center-stuff" style="min-height: 19px;">{{$t('minimum_players')}}</p> | ||||
| 				<p v-else style="min-height: 19px;"> </p> | ||||
| 				<h3>{{$t("expansions")}}</h3> | ||||
| 				<div v-for="ex in expansionsStatus" v-bind:key="ex.id"> | ||||
| 					<PrettyCheck @click.native="toggleExpansions(ex.id)" :disabled="!isRoomOwner" :checked="ex.enabled" class="p-switch p-fill" style="margin-top:5px; margin-bottom:3px;">{{ex.name}}</PrettyCheck> | ||||
|  | ||||
| @ -145,6 +145,7 @@ export default { | ||||
| 			else if (this.pending_action == 3) document.title = this.$t('your_response')+' | PewPew!' | ||||
| 			else if (this.pending_action == 5) document.title = this.$t('your_choose')+' | PewPew!' | ||||
| 			else document.title = 'PewPew!' | ||||
| 			if ((this.live > 0 || this.is_ghost) && this.spectator) this.spectator = false | ||||
| 			this.expected_response = self.expected_response | ||||
| 			this.available_cards = self.available_cards | ||||
| 			this.win_status = self.win_status | ||||
|  | ||||
		Loading…
	
		Reference in New Issue
	
	Block a user
	 Giulio
						Giulio