diff -Nru /tmp/yNRD3p5uRJ/gnome-hearts-0.1.3/debian/changelog /tmp/JcyVb4Op30/gnome-hearts-0.1.3/debian/changelog --- /tmp/yNRD3p5uRJ/gnome-hearts-0.1.3/debian/changelog 2007-05-23 09:01:56.000000000 +0200 +++ /tmp/JcyVb4Op30/gnome-hearts-0.1.3/debian/changelog 2007-05-23 09:01:56.000000000 +0200 @@ -1,3 +1,9 @@ +gnome-hearts (0.1.3-3ubuntu1) feisty; urgency=low + + * Corrected the score calculation for Omnibus and Omnibus alternative ruleset + + -- Stijn Polfliet Tue, 22 May 2007 21:19:07 +0200 + gnome-hearts (0.1.3-3) unstable; urgency=high * Add a get-orig-source target to retrieve the upstream tarball. diff -Nru /tmp/yNRD3p5uRJ/gnome-hearts-0.1.3/debian/control /tmp/JcyVb4Op30/gnome-hearts-0.1.3/debian/control --- /tmp/yNRD3p5uRJ/gnome-hearts-0.1.3/debian/control 2007-05-23 09:01:56.000000000 +0200 +++ /tmp/JcyVb4Op30/gnome-hearts-0.1.3/debian/control 2007-05-23 09:01:56.000000000 +0200 @@ -15,7 +15,7 @@ liblualib50-dev, libxml-parser-perl, scrollkeeper (>= 0.3.8) -Uploaders: Debian GNOME Maintainers , Josselin Mouette , Loic Minier +Uploaders: Debian GNOME Maintainers , Andrew Lau , Clément Stenac , Dafydd Harries , Guilherme de S. Pastore , Gustavo Franco , Gustavo Noronha Silva , J.H.M. Dassen (Ray) , Jordi Mallach , Jose Carlos Garcia Sogo , Josselin Mouette , Kilian Krause , Loic Minier , Marc 'HE' Brockschmidt , Marco Cabizza , Oystein Gisnas , Ondřej Surý , Ross Burton , Sebastien Bacher , Sjoerd Simons Standards-Version: 3.7.2.0 Package: gnome-hearts diff -Nru /tmp/yNRD3p5uRJ/gnome-hearts-0.1.3/debian/patches/02_correct_score.patch /tmp/JcyVb4Op30/gnome-hearts-0.1.3/debian/patches/02_correct_score.patch --- /tmp/yNRD3p5uRJ/gnome-hearts-0.1.3/debian/patches/02_correct_score.patch 1970-01-01 01:00:00.000000000 +0100 +++ /tmp/JcyVb4Op30/gnome-hearts-0.1.3/debian/patches/02_correct_score.patch 2007-05-23 09:01:56.000000000 +0200 @@ -0,0 +1,17 @@ +diff -Nur gnome-hearts-0.1.3/src/hearts.c gnome-hearts-0.1.3.new/src/hearts.c +--- gnome-hearts-0.1.3/src/hearts.c 2007-05-23 08:45:12.000000000 +0200 ++++ gnome-hearts-0.1.3.new/src/hearts.c 2007-05-23 08:45:12.000000000 +0200 +@@ -260,9 +260,11 @@ + for (i = 0; i < 4; i++) + { + /* update the scores */ +- if (player[i]->point_cards == 14) /* shot the moon? */ ++ if (player[i]->point_cards == 14 && player[i]->score_round == 26) /* shot the moon? */ + player[i]->score_total -= player[i]->score_round; +- else ++ else if (player[i]->point_cards == 14 && player[i]->score_round == 16) /* shot the moon with bonus? */ ++ player[i]->score_total -= 36; ++ else + player[i]->score_total += player[i]->score_round; + + player[i]->score_round = 0;