fixed remove

This commit is contained in:
Johannes Schmelz 2024-10-05 13:14:20 +02:00
parent 35f154aa0f
commit e343074240

View File

@ -98,7 +98,7 @@ public class ShipMap {
*/
public void remove(Item item) {
items.remove(item);
notifyListeners(new ItemAddedEvent(item, this));
notifyListeners(new ItemRemovedEvent(item, this));
}
/**