Add Missing SQLS

This commit is contained in:
KrewsOrg 2019-06-03 03:09:51 +01:00
parent 53b13b7133
commit 25d5a4e139
3 changed files with 11 additions and 3 deletions

View File

@ -6,7 +6,7 @@
<groupId>com.eu.habbo</groupId>
<artifactId>Habbo</artifactId>
<version>2.0.0</version>
<version>2.1.0</version>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>

View File

@ -7,4 +7,12 @@ CREATE TABLE `users_saved_searches` (
);
ALTER TABLE `users_settings`
ADD COLUMN `ui_flags` int(11) NOT NULL DEFAULT 1 AFTER `forums_post_count`;
ADD COLUMN `ui_flags` int(11) NOT NULL DEFAULT 1 AFTER `forums_post_count`;
ALTER TABLE `users_settings`
ADD COLUMN `has_gotten_default_saved_searches` tinyint(1) NOT NULL DEFAULT 0 AFTER `ui_flags`;
ALTER TABLE `support_tickets`
ADD COLUMN `group_id` int(11) NOT NULL AFTER `category`,
ADD COLUMN `thread_id` int(11) NOT NULL AFTER `group_id`,
ADD COLUMN `comment_id` int(11) NOT NULL AFTER `thread_id`;

View File

@ -38,7 +38,7 @@ public class BaseJumpLoadGameComposer extends MessageComposer {
this.response.appendString("accessToken");
this.response.appendString(Emulator.getConfig().getValue("username") + "\t" + Emulator.version + "\t" + this.client.getHabbo().getHabboInfo().getId() + "\t" + this.client.getHabbo().getHabboInfo().getUsername() + "\t" + this.client.getHabbo().getHabboInfo().getLook() + "\t" + this.client.getHabbo().getHabboInfo().getCredits() + "\t" + FASTFOOD_KEY);
this.response.appendString("gameServerHost");
this.response.appendString("arcturus.pw");
this.response.appendString("google.com");
this.response.appendString("gameServerPort");
this.response.appendString("3002");
this.response.appendString("socketPolicyPort");