mirror of
https://git.krews.org/morningstar/Arcturus-Community.git
synced 2024-11-26 08:20:51 +01:00
Fix
This commit is contained in:
parent
b8b5b4b576
commit
797b887a98
@ -57,6 +57,9 @@ public class HabboBadge implements Runnable {
|
||||
public void run() {
|
||||
try {
|
||||
if (this.needsInsert) {
|
||||
if (this.habbo.getInventory().getBadgesComponent().hasBadge(this.code))
|
||||
return;
|
||||
|
||||
try (Connection connection = Emulator.getDatabase().getDataSource().getConnection(); PreparedStatement statement = connection.prepareStatement("INSERT INTO users_badges (user_id, slot_id, badge_code) VALUES (?, ?, ?)", Statement.RETURN_GENERATED_KEYS)) {
|
||||
statement.setInt(1, this.habbo.getHabboInfo().getId());
|
||||
statement.setInt(2, this.slot);
|
||||
|
@ -160,7 +160,8 @@ public class BadgesComponent {
|
||||
|
||||
public void addBadge(HabboBadge badge) {
|
||||
synchronized (this.badges) {
|
||||
this.badges.add(badge);
|
||||
if (!this.hasBadge(badge.getCode()))
|
||||
this.badges.add(badge);
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user