mirror of
https://git.krews.org/morningstar/Arcturus-Community.git
synced 2025-01-31 04:12:37 +01:00
Fix converting credit furni
This commit is contained in:
parent
948669cbff
commit
9807d52403
@ -222,7 +222,7 @@ public class RoomTrade {
|
||||
if (worth > 0) {
|
||||
creditsForUserTwo += worth;
|
||||
creditFurniUserOne.add(item);
|
||||
new QueryDeleteHabboItem(item);
|
||||
new QueryDeleteHabboItem(item).run();
|
||||
}
|
||||
}
|
||||
itemsUserOne.removeAll(creditFurniUserOne);
|
||||
@ -234,7 +234,7 @@ public class RoomTrade {
|
||||
if (worth > 0) {
|
||||
creditsForUserOne += worth;
|
||||
creditFurniUserTwo.add(item);
|
||||
new QueryDeleteHabboItem(item);
|
||||
new QueryDeleteHabboItem(item).run();
|
||||
}
|
||||
}
|
||||
itemsUserTwo.removeAll(creditFurniUserTwo);
|
||||
|
Loading…
x
Reference in New Issue
Block a user