diff --git a/toontown/estate/DistributedFurnitureManagerAI.py b/toontown/estate/DistributedFurnitureManagerAI.py index d2a512f6..6dc32179 100644 --- a/toontown/estate/DistributedFurnitureManagerAI.py +++ b/toontown/estate/DistributedFurnitureManagerAI.py @@ -338,7 +338,8 @@ class DistributedFurnitureManagerAI(DistributedObjectAI): def deleteWallpaperFromAttic(self, blob, index): wallpaper = self.getAtticFurniture(blob, index) - self.atticWallpaper.remove(wallpaper) + if wallpaper in self.atticWallpaper: + self.atticWallpaper.remove(wallpaper) self.b_setAtticWallpaper(self.getAtticWallpaper()) def moveWindowToAttic(self, slot):