We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5a39941 commit fd9b8f7Copy full SHA for fd9b8f7
1 file changed
SteamWebAPI2/Models/DOTA2/TowerState.cs
@@ -10,8 +10,8 @@ public class TowerState
10
{
11
public TowerState(int towerState)
12
13
- IsAncientTopAlive = ((towerState >> 10) & 1) == 1 ? true : false;
14
- IsAncientBottomAlive = ((towerState >> 9) & 1) == 1 ? true : false;
+ IsAncientBottomAlive = ((towerState >> 10) & 1) == 1 ? true : false;
+ IsAncientTopAlive = ((towerState >> 9) & 1) == 1 ? true : false;
15
IsBottomTier3Alive = ((towerState >> 8) & 1) == 1 ? true : false;
16
IsBottomTier2Alive = ((towerState >> 7) & 1) == 1 ? true : false;
17
IsBottomTier1Alive = ((towerState >> 6) & 1) == 1 ? true : false;
0 commit comments