Compare commits

...

2 Commits

Author SHA1 Message Date
Johannes Schmelz
7c79bb77e7 Merge branch 'gui' of https://athene2.informatik.unibw-muenchen.de/progproj/gruppen-ht24/Gruppe-02 into gui 2024-12-12 16:13:55 +01:00
Johannes Schmelz
444cf9db4e fixed names in Player Popups 2024-12-12 16:13:50 +01:00

View File

@ -351,8 +351,8 @@ public class Player implements FieldVisitor<Void>{
int rent = field.calcRent();
field.getOwner().earnMoney(rent);
pay(rent);
sendRentNotification("ReceivedRent", field.getOwner(), rent);
sendRentNotification("rent", this, rent);
sendRentNotification("ReceivedRent", this, rent);
sendRentNotification("rent", field.getOwner(), rent);
}
return null;
}
@ -369,8 +369,8 @@ public class Player implements FieldVisitor<Void>{
int rent = rollResult.calcTotal()*factor;
field.getOwner().earnMoney(rent);
pay(rent);
sendRentNotification("ReceivedRent", field.getOwner(), rent);
sendRentNotification("rent", this, rent);
sendRentNotification("ReceivedRent", this, rent);
sendRentNotification("rent", field.getOwner(), rent);
}
return null;
}
@ -384,8 +384,8 @@ public class Player implements FieldVisitor<Void>{
field.getOwner().earnMoney(rent);
pay(rent);
sendRentNotification("ReceivedRent", field.getOwner(), rent);
sendRentNotification("rent", this, rent);
sendRentNotification("ReceivedRent", this, rent);
sendRentNotification("rent", field.getOwner(), rent);
}
return null;
}