[NeoStats-Devel] [Commits] r48 - branches/3.0
[email protected] Tue, 9 Aug 2005 23:05:09 +1000
| Newsgroups | gmane.comp.neostats.devel |
|---|---|
| Message-ID | <[email protected]> |
Author: DNB
Date: Tue Aug 9 21:05:00 2005
New Revision: 48
Modified:
branches/3.0/events.c
branches/3.0/play.c
branches/3.0/warserv.c
branches/3.0/warserv.h
branches/3.0/warserv_help.c
Log:
update timers and copyright
Modified: branches/3.0/events.c
==============================================================================
--- branches/3.0/events.c (original)
+++ branches/3.0/events.c Tue Aug 9 21:05:00 2005
@@ -1,5 +1,5 @@
/* WarServ - War Card Game Service - NeoStats Addon Module
-** Copyright (c) 2004-2005 Justin Hammond, Mark Hetherington, DeadNotBuried
+** Copyright (c) 2004-2005 Justin Hammond, Mark Hetherington, Jeff Lang
**
** This program is free software; you can redistribute it and/or modify
** it under the terms of the GNU General Public License as published by
Modified: branches/3.0/play.c
==============================================================================
--- branches/3.0/play.c (original)
+++ branches/3.0/play.c Tue Aug 9 21:05:00 2005
@@ -1,5 +1,5 @@
/* WarServ - War Card Game Service - NeoStats Addon Module
-** Copyright (c) 2004-2005 Justin Hammond, Mark Hetherington, DeadNotBuried
+** Copyright (c) 2004-2005 Justin Hammond, Mark Hetherington, Jeff Lang
**
** This program is free software; you can redistribute it and/or modify
** it under the terms of the GNU General Public License as published by
@@ -64,7 +64,7 @@
void startcountdowntimer(char *nic) {
currentwargamestatus = WS_GAME_STARTING;
irc_chanprivmsg (ws_bot, warroom, "\0037A new game of \0034WAR\0037 has been started by %s. Game will start in 30 seconds, type '\2\003!Join\2\0037' to play.", nic);
- AddTimer (TIMER_TYPE_COUNTDOWN, startwar, "startwar", 30);
+ AddTimer (TIMER_TYPE_COUNTDOWN, startwar, "startwar", 30, NULL);
return;
}
@@ -73,7 +73,7 @@
* Initializes variables and starts game
*/
-int startwar(void)
+int startwar(void *userptr)
{
/* DelTimer ("startwar"); */
if (currentwargamestatus == WS_GAME_STARTING) {
Modified: branches/3.0/warserv.c
==============================================================================
--- branches/3.0/warserv.c (original)
+++ branches/3.0/warserv.c Tue Aug 9 21:05:00 2005
@@ -1,5 +1,5 @@
/* WarServ - War Card Game Service - NeoStats Addon Module
-** Copyright (c) 2004-2005 Justin Hammond, Mark Hetherington, DeadNotBuried
+** Copyright (c) 2004-2005 Justin Hammond, Mark Hetherington, Jeff Lang
**
** This program is free software; you can redistribute it and/or modify
** it under the terms of the GNU General Public License as published by
Modified: branches/3.0/warserv.h
==============================================================================
--- branches/3.0/warserv.h (original)
+++ branches/3.0/warserv.h Tue Aug 9 21:05:00 2005
@@ -1,5 +1,5 @@
/* WarServ - War Card Game Service - NeoStats Addon Module
-** Copyright (c) 2004-2005 Justin Hammond, Mark Hetherington, DeadNotBuried
+** Copyright (c) 2004-2005 Justin Hammond, Mark Hetherington, Jeff Lang
**
** This program is free software; you can redistribute it and/or modify
** it under the terms of the GNU General Public License as published by
@@ -80,7 +80,7 @@
void playershufflecards(void);
void stopwar(void);
void startcountdowntimer(char *nic);
-int startwar(void);
+int startwar(void *userptr);
void joinwar(char *nic);
void removewarother(char *nic, char *ntr);
void removewar(char *nic);
Modified: branches/3.0/warserv_help.c
==============================================================================
--- branches/3.0/warserv_help.c (original)
+++ branches/3.0/warserv_help.c Tue Aug 9 21:05:00 2005
@@ -1,5 +1,5 @@
/* WarServ - War Card Game Service - NeoStats Addon Module
-** Copyright (c) 2004-2005 Justin Hammond, Mark Hetherington, DeadNotBuried
+** Copyright (c) 2004-2005 Justin Hammond, Mark Hetherington, Jeff Lang
**
** This program is free software; you can redistribute it and/or modify
** it under the terms of the GNU General Public License as published by