Fix text on Stalk Command (by Snaiker)

And some emulator_settings for the previous commit
This commit is contained in:
ArpyAge 2021-09-01 17:36:32 +02:00
parent f7ee2ddf72
commit 9acc3f9359
2 changed files with 5 additions and 1 deletions

View File

@ -0,0 +1,4 @@
INSERT INTO `emulator_settings`(`key`, `value`) VALUES ('wired.place.under', '0');
INSERT INTO `emulator_settings`(`key`, `value`) VALUES ('wired.custom.enabled', '0');
INSERT INTO `emulator_texts` (`key`, `value`) VALUES ('commands.error.cmd_stalk.forgot_username', 'Specify the username of the Habbo you want to follow!');

View File

@ -43,7 +43,7 @@ public class StalkCommand extends Command {
//gameClient.sendResponse(new ForwardToRoomComposer(habbo.getHabboInfo().getCurrentRoom().getId()));
return true;
} else {
gameClient.getHabbo().whisper(Emulator.getTexts().getValue("commands.error.cmd_summon.forgot_username"), RoomChatMessageBubbles.ALERT);
gameClient.getHabbo().whisper(Emulator.getTexts().getValue("commands.error.cmd_stalk.forgot_username"), RoomChatMessageBubbles.ALERT);
return true;
}
}