/vqdr/trunk

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/vqdr/trunk

« back to all changes in this revision

Viewing changes to src/libvqdr/dice.vala

  • Committer: Gustav Hartvigsson
  • Date: 2021-05-24 19:32:41 UTC
  • Revision ID: gustav.hartvigsson@gmail.com-20210524193241-zgalq2lc1eghdrnu
* fixed spelling error in meson.build

Show diffs side-by-side

added added

removed removed

Lines of Context:
33
33
      int retval = modifier;
34
34
      for (size_t i = 1; i <= times; i++) {
35
35
        int r = (VQDR.Common.Random.get_static_int () % faces).abs ();
 
36
        
36
37
        retval += r;
37
 
        
38
38
      }
39
39
      
40
40
      return retval;