Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 10 additions & 10 deletions addons/sourcemod/scripting/include/umc-core.inc
Original file line number Diff line number Diff line change
Expand Up @@ -60,35 +60,35 @@ enum UMC_VoteType
{
VoteType_Map = 0,
VoteType_Group,
VoteType_Tier
}
VoteType_Tier,
};

enum UMC_ChangeMapTime
{
ChangeMapTime_Now = 0,
ChangeMapTime_RoundEnd,
ChangeMapTime_MapEnd
}
ChangeMapTime_MapEnd,
};

enum UMC_VoteFailAction
{
VoteFailAction_Nothing = 0,
VoteFailAction_Runoff
}
VoteFailAction_Runoff,
};

enum UMC_RunoffFailAction
{
RunoffFailAction_Nothing = 0,
RunoffFailAction_Accept
}
RunoffFailAction_Accept,
};

enum UMC_VoteResponse
{
VoteResponse_Success = 0,
VoteResponse_Runoff,
VoteResponse_Tiered,
VoteResponse_Fail
}
VoteResponse_Fail,
};


/**
Expand Down
Loading