diff options
author | Fabian Greffrath | 2015-02-23 17:39:03 +0100 |
---|---|---|
committer | Fabian Greffrath | 2015-02-23 17:39:03 +0100 |
commit | 909a779a0d54ff91b01fad2cc17a0263ba5419ad (patch) | |
tree | fdd4877968d85e6dfdfbd82068274febf1c9969f /src/hexen | |
parent | bfd396ee4184265e11b27c9e87d45c28a713d90c (diff) | |
download | chocolate-doom-909a779a0d54ff91b01fad2cc17a0263ba5419ad.tar.gz chocolate-doom-909a779a0d54ff91b01fad2cc17a0263ba5419ad.tar.bz2 chocolate-doom-909a779a0d54ff91b01fad2cc17a0263ba5419ad.zip |
Switch pick-up messages for Chaos Device and Disc of Repulsion
For bug compatibility with the original 4-level Demo. Confirmed on
map04 with the Demo version with the following md5sums:
458d3ff08d32fc50abb55a5b68660b6b HEXEN.EXE
876a5a44c7b68f04b3bb9bc7a5bd69d6 HEXEN.WAD
Diffstat (limited to 'src/hexen')
-rw-r--r-- | src/hexen/p_inter.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/hexen/p_inter.c b/src/hexen/p_inter.c index 587614ff..4f1ecda8 100644 --- a/src/hexen/p_inter.c +++ b/src/hexen/p_inter.c @@ -747,6 +747,12 @@ static void TryPickupArtifact(player_t * player, artitype_t artifactType, TXT_ARTIPUZZGEAR }; + if (gamemode == shareware) + { + artifactMessages[arti_blastradius] = TXT_ARTITELEPORT; + artifactMessages[arti_teleport] = TXT_ARTIBLASTRADIUS; + } + if (P_GiveArtifact(player, artifactType, artifact)) { if (artifact->special) |