view arogue5/network.h @ 251:e7862a021609

Fix the perpetual haste cheat. Rogue V3 allowed the player to gain perpetual haste by quaffing a potion of haste while already hasted. This is supposed to remove the haste effect and cause temporary paralysis. Super-Rogue removed haste correctly, but gave confusing messages.
author John "Elwin" Edwards
date Sat, 28 Jan 2017 11:45:36 -0500
parents 0ed67132cf10
children
line wrap: on
line source

/* 
 * Networking information -- should not vary among networking machines
 *
 * Advanced Rogue
 * Copyright (C) 1984, 1985 Michael Morgan, Ken Dalka and AT&T
 * All rights reserved.
 *
 * See the file LICENSE.TXT for full copyright and licensing information.
 */

#define SYSLEN 9
#define LOGLEN 8
#define NUMNET 6
#undef NUMNET
struct network {
    char *system;
    char *rogue;
};
extern struct network Network[];

/* This system's name -- should not be defined if uname() is available */