corrected an error in ShipMap.java.

remove-function called a new ItemAddedEvent instead of a ItemRemovedEvent
This commit is contained in:
Timo Brennförder
2024-10-02 11:48:58 +02:00
parent 71a4ac8d12
commit 09f3e9e403

View File

@@ -10,6 +10,7 @@
import pp.battleship.notification.GameEvent;
import pp.battleship.notification.GameEventBroker;
import pp.battleship.notification.ItemAddedEvent;
import pp.battleship.notification.ItemRemovedEvent;
import java.util.ArrayList;
import java.util.Collections;
@@ -97,7 +98,7 @@ public void add(Shot shot) {
*/
public void remove(Item item) {
items.remove(item);
notifyListeners(new ItemAddedEvent(item, this));
notifyListeners(new ItemRemovedEvent(item, this));
}
/**