/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: 2022-06-01 18:16:29 UTC
  • Revision ID: gustav.hartvigsson@gmail.com-20220601181629-meq45diu7dh8iied
Made sure that no text rows exeed 80 columns.

Show diffs side-by-side

added added

removed removed

Lines of Context:
74
74
    StringBuilder retval = new StringBuilder ();
75
75
    
76
76
    if (times > 0) {
77
 
      retval.append (times.to_string ()).append_c ('d').append (faces.to_string ());
 
77
      retval.append (times.to_string ())
 
78
            .append_c ('d')
 
79
            .append (faces.to_string ());
78
80
    }
79
81
    if (modifier > 0) {
80
82
        retval.append_c ('+').append (modifier.to_string ());