[Freeciv-Dev] Re: (PR#10635) odd message on pregame login
[Top] [All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index] [Thread Index]
To: |
undisclosed-recipients: ; |
Subject: |
[Freeciv-Dev] Re: (PR#10635) odd message on pregame login |
From: |
"Jason Short" <jdorje@xxxxxxxxxxxxxxxxxxxxx> |
Date: |
Wed, 20 Oct 2004 08:46:30 -0700 |
Reply-to: |
rt@xxxxxxxxxxx |
<URL: http://rt.freeciv.org/Ticket/Display.html?id=10635 >
Mike Kaufman wrote:
> <URL: http://rt.freeciv.org/Ticket/Display.html?id=10635 >
>
> On Tue, Oct 19, 2004 at 10:53:30PM -0700, Jason Short wrote:
>
>><URL: http://rt.freeciv.org/Ticket/Display.html?id=10635 >
>>
>>I hacked the server to never give hack.
>
> post your patch.
This patch? I don't see how that could have anything to do with it...
jason
Index: server/gamehand.c
===================================================================
RCS file: /home/freeciv/CVS/freeciv/server/gamehand.c,v
retrieving revision 1.144
diff -u -r1.144 gamehand.c
--- server/gamehand.c 10 Oct 2004 20:02:02 -0000 1.144
+++ server/gamehand.c 20 Oct 2004 15:45:50 -0000
@@ -480,7 +480,7 @@
could_load = FALSE;
}
- you_have_hack = (could_load && entropy && entropy == challenge);
+ you_have_hack = FALSE;
if (you_have_hack) {
pc->access_level = ALLOW_HACK;
|
|