trigger money sounds

This commit is contained in:
Johannes Schmelz 2024-12-03 12:34:56 +01:00
parent 1369de865a
commit aae003823d

View File

@ -344,15 +344,16 @@ public class ClientGameLogic implements ServerInterpreter, GameEventBroker {
public void received(NotificationMessage msg) { public void received(NotificationMessage msg) {
if (msg.getKeyWord().equals("rent")) { if (msg.getKeyWord().equals("rent")) {
notifyListeners(new PopUpEvent("rent", msg)); notifyListeners(new PopUpEvent("rent", msg));
playSound(Sound.MONEY_LOST);
} else if (msg.getKeyWord().equals("jailpay")) { } else if (msg.getKeyWord().equals("jailpay")) {
playSound(Sound.MONEY_LOST);
notifyListeners(new PopUpEvent(msg.getKeyWord(), msg)); notifyListeners(new PopUpEvent(msg.getKeyWord(), msg));
} else if(msg.getKeyWord().equals("NoMoneyWarning")) { } else if(msg.getKeyWord().equals("NoMoneyWarning")) {
notifyListeners(new PopUpEvent("NoMoneyWarning", msg)); notifyListeners(new PopUpEvent("NoMoneyWarning", msg));
} else if (msg.getKeyWord().equals("jailpay")) {
notifyListeners(new PopUpEvent("jailpay", msg));
} else if (msg.getKeyWord().equals("jailtryagain")) { } else if (msg.getKeyWord().equals("jailtryagain")) {
notifyListeners(new PopUpEvent("jailtryagain", msg)); notifyListeners(new PopUpEvent("jailtryagain", msg));
} else if(msg.getKeyWord().equals("ReceivedRent")) { } else if(msg.getKeyWord().equals("ReceivedRent")) {
playSound(Sound.MONEY_COLLECTED);
notifyListeners(new PopUpEvent("ReceivedRent", msg)); notifyListeners(new PopUpEvent("ReceivedRent", msg));
} }
} }