mirror of
https://git.krews.org/morningstar/Arcturus-Community.git
synced 2025-01-31 12:22:36 +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) {
|
if (worth > 0) {
|
||||||
creditsForUserTwo += worth;
|
creditsForUserTwo += worth;
|
||||||
creditFurniUserOne.add(item);
|
creditFurniUserOne.add(item);
|
||||||
new QueryDeleteHabboItem(item);
|
new QueryDeleteHabboItem(item).run();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
itemsUserOne.removeAll(creditFurniUserOne);
|
itemsUserOne.removeAll(creditFurniUserOne);
|
||||||
@ -234,7 +234,7 @@ public class RoomTrade {
|
|||||||
if (worth > 0) {
|
if (worth > 0) {
|
||||||
creditsForUserOne += worth;
|
creditsForUserOne += worth;
|
||||||
creditFurniUserTwo.add(item);
|
creditFurniUserTwo.add(item);
|
||||||
new QueryDeleteHabboItem(item);
|
new QueryDeleteHabboItem(item).run();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
itemsUserTwo.removeAll(creditFurniUserTwo);
|
itemsUserTwo.removeAll(creditFurniUserTwo);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user