mirror of
https://git.krews.org/morningstar/Arcturus-Community.git
synced 2024-11-26 16:30:52 +01:00
Add Missing SQLS
This commit is contained in:
parent
53b13b7133
commit
25d5a4e139
2
pom.xml
2
pom.xml
@ -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>
|
||||
|
@ -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`;
|
@ -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");
|
||||
|
Loading…
Reference in New Issue
Block a user