estates: Potential fix for Issue #161
This commit is contained in:
parent
c4b994a947
commit
441b1d71e3
1 changed files with 2 additions and 1 deletions
|
@ -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):
|
||||
|
|
Loading…
Reference in a new issue