From f6aa16947ac5f15a66c057603aa841dc0b8e3ad1 Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Tue, 11 Dec 2018 00:35:53 +0100 Subject: [PATCH] - re-added PlayerInfo.BringUpWeapon. --- wadsrc/static/zscript/shared/player.txt | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/wadsrc/static/zscript/shared/player.txt b/wadsrc/static/zscript/shared/player.txt index 391ae38a6..9a06f78b4 100644 --- a/wadsrc/static/zscript/shared/player.txt +++ b/wadsrc/static/zscript/shared/player.txt @@ -2431,6 +2431,11 @@ struct PlayerInfo native play // self is what internally is known as player_t mo.DropWeapon(); } } + + deprecated("3.7") void BringUpWeapon() + { + if (mo) mo.BringUpWeapon(); + } bool IsTotallyFrozen() {