Somehow missed Team Super Smash

This commit is contained in:
samczsun 2017-03-06 16:15:36 -05:00 committed by cnr
parent b5f026d4c0
commit 888761d15e

View File

@ -19,6 +19,7 @@ import nautilus.game.arcade.ArcadeManager;
import nautilus.game.arcade.GameType;
import nautilus.game.arcade.events.GameStateChangeEvent;
import nautilus.game.arcade.game.GameTeam;
import nautilus.game.arcade.game.modules.TeamArmorModule;
import nautilus.game.arcade.game.modules.TeamModule;
import nautilus.game.arcade.managers.chat.ChatStatData;
import nautilus.game.arcade.stats.FreeKitWinStatTracker;
@ -40,8 +41,6 @@ public class TeamSuperSmash extends SuperSmash
SpawnNearAllies = true;
DamageTeamSelf = false;
TeamArmorHotbar = true;
DontAllowOverfill = true;
TeamMode = true;
@ -52,6 +51,10 @@ public class TeamSuperSmash extends SuperSmash
new RecoveryMasterStatTracker(this));
registerChatStats(Kills, Deaths, KDRatio, BlankLine, Assists, DamageTaken, DamageDealt, BlankLine, new ChatStatData("kit", "Kit", true));
new TeamArmorModule()
.giveHotbarItem()
.register(this);
}
@Override