Skip to content
Snippets Groups Projects
Commit 114b9259 authored by Bruce Cowan's avatar Bruce Cowan
Browse files

Change ranges of types of score to maxium possible with 200 points

parent e1ae94d7
No related branches found
No related tags found
No related merge requests found
......@@ -98,15 +98,15 @@ rugby_possibility_class_init (RugbyPossibilityClass *klass)
properties[PROP_TRIES] =
g_param_spec_int ("tries", "Tries", "Converted tries",
0, 20, 0,
0, 28, 0,
G_PARAM_CONSTRUCT_ONLY | G_PARAM_READWRITE);
properties[PROP_UTRIES] =
g_param_spec_int ("utries", "Utries", "Unconverted tries",
0, 20, 0,
0, 40, 0,
G_PARAM_CONSTRUCT_ONLY | G_PARAM_READWRITE);
properties[PROP_KICKS] =
g_param_spec_int ("kicks", "Kicks", "Penalties and drop goals",
0, 20, 0,
0, 66, 0,
G_PARAM_CONSTRUCT_ONLY | G_PARAM_READWRITE);
g_object_class_install_properties (object_class,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment