Added missing tag in volume attributes. Simplified attribute comments.

This commit is contained in:
richard 2009-10-08 02:59:42 +02:00
parent 8c2494f052
commit 8bd7c09887
1 changed files with 2 additions and 2 deletions

View File

@ -60,7 +60,7 @@ enum VolumeAttributes
/* Behaviour */ /* Behaviour */
VolumeTeamFilters:Vol_TeamFilter, /** Team filtering. Trigger by certain teams, or all. */ VolumeTeamFilters:Vol_TeamFilter, /** Team filtering. Trigger by certain teams, or all. */
Float:Vol_TriggerDelay, /** Trigger delay. How many seconds players have to stay to trigger volume events. */ Float:Vol_TriggerDelay, /** Trigger delay. How many seconds players have to stay to trigger volume events. */
Vol_ConflictAction, /** What to do if volumes of same type overlap. */ VolumeConflictActions:Vol_ConflictAction, /** What to do if volumes of same type overlap. */
Vol_Priority, /** Volume priority. */ Vol_Priority, /** Volume priority. */
} }
@ -100,7 +100,7 @@ enum VolumeTeamFilters
enum VolumeConflictActions enum VolumeConflictActions
{ {
VolPriority = 0, /** Use the volume with highest priority, ignore others. */ VolPriority = 0, /** Use the volume with highest priority, ignore others. */
VolMerge /** Merge volume settings/attributes. Using priority if there's a merge conflict. */ VolMerge /** Try to merge volume settings/attributes, or use priority if there's a merge conflict. */
} }
/** /**