mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2026-05-04 22:59:42 +02:00
Vigilante Justice now reduces wanted by a percentage to help players stuck with very high wanted level.
This commit is contained in:
@@ -193,9 +193,6 @@ export class Blackjack extends Game<Props, State> {
|
||||
const dealerHandValue = this.getTrueHandValue(newDealerHand);
|
||||
const playerHandValue = this.getTrueHandValue(this.state.playerHand);
|
||||
|
||||
console.log(`dealerHandValue: ${dealerHandValue}`);
|
||||
console.log(`playerHandValue: ${playerHandValue}`);
|
||||
|
||||
// We expect nobody to have busted. If someone busted, there is an error
|
||||
// in our game logic
|
||||
if (dealerHandValue > 21 || playerHandValue > 21) {
|
||||
|
||||
Reference in New Issue
Block a user