~ubuntu-branches/ubuntu/precise/openarena/precise

« back to all changes in this revision

Viewing changes to code/game/g_spawn.c

  • Committer: Bazaar Package Importer
  • Author(s): Ansgar Burchardt
  • Date: 2008-09-05 21:14:51 UTC
  • mfrom: (1.2.1 upstream) (2.1.5 intrepid)
  • Revision ID: james.westby@ubuntu.com-20080905211451-243bmbl6l6gdav7l
* Remove non-free code/tools/lcc (Closes: #496346)
  + Remove hunk from patch 10_fix_build_and_binary_on_alpha
  + debian/rules: Add BUILD_GAME_QVM=0 to $(MAKE) call
    (thanks to Peter De Wachter)
* Remove code/libs containing binary libraries for Mac OS X and Win32
* debian/copyright: Explain which parts of upstream's sources were removed
* debian/rules: replace ${source:Upstream-Version} by 0.7.7
  because the variable also contains the `+dfsg1' part
* Add -fsigned-char to compiler options (Closes: #487970)
  (thanks to Peter De Wachter)
* Add myself to Uploaders
* debian/control: Remove article from beginning of short description,
  don't start short description with a capital letter
* debian/openarena.6: Escape minus signs
  + fixes lintian warnings: hyphen-used-as-minus-sign

Show diffs side-by-side

added added

removed removed

Lines of Context:
129
129
void SP_info_player_start (gentity_t *ent);
130
130
void SP_info_player_deathmatch (gentity_t *ent);
131
131
void SP_info_player_intermission (gentity_t *ent);
 
132
//For Double Domination:
 
133
void SP_info_player_dd (gentity_t *ent);
 
134
//standard domination:
 
135
void SP_domination_point ( gentity_t *ent);
 
136
 
132
137
void SP_info_firstplace(gentity_t *ent);
133
138
void SP_info_secondplace(gentity_t *ent);
134
139
void SP_info_thirdplace(gentity_t *ent);
199
204
        {"info_player_start", SP_info_player_start},
200
205
        {"info_player_deathmatch", SP_info_player_deathmatch},
201
206
        {"info_player_intermission", SP_info_player_intermission},
 
207
//Double Domination player spawn:
 
208
        {"info_player_dd", SP_info_player_dd},
 
209
//Standard Domination point spawn:
 
210
        {"domination_point", SP_domination_point},
 
211
 
 
212
 
202
213
        {"info_null", SP_info_null},
203
214
        {"info_notnull", SP_info_notnull},              // use target_position instead
204
215
        {"info_camp", SP_info_camp},