Added can_swim to pets

This commit is contained in:
Beny 2019-06-03 20:18:33 +01:00
parent a3df990398
commit e264c50957
2 changed files with 8 additions and 1 deletions

View File

@ -15,4 +15,9 @@ ADD COLUMN `has_gotten_default_saved_searches` tinyint(1) NOT NULL DEFAULT 0 AFT
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`;
ADD COLUMN `comment_id` int(11) NOT NULL AFTER `thread_id`;
ALTER TABLE `pet_actions`
ADD COLUMN `can_swim` enum('1','0') NULL DEFAULT '0' AFTER `random_actions`;
UPDATE `pet_actions` SET `can_swim` = '1' WHERE `pet_type` = 9 OR `pet_type` = 14 OR `pet_type` = 23 OR `pet_type` = 24 OR `pet_type` = 25 OR `pet_type` = 28 OR `pet_type` = 29 OR `pet_type` = 30 OR `pet_type` = 32;

View File

@ -31,6 +31,7 @@ public class PetData implements Comparable<PetData> {
public String[] actionsTired;
public String[] actionsRandom;
public THashMap<PetVocalsType, THashSet<PetVocal>> petVocals;
public boolean canSwim;
private int type;
private String name;
private List<PetCommand> petCommands;
@ -51,6 +52,7 @@ public class PetData implements Comparable<PetData> {
this.actionsHappy = set.getString("happy_actions").split(";");
this.actionsTired = set.getString("tired_actions").split(";");
this.actionsRandom = set.getString("random_actions").split(";");
this.canSwim = set.getString("can_swim").equalsIgnoreCase("1");
this.reset();
}