From 1c58093fc8ea75500c9f4e31a3fb417d7ecc28ac Mon Sep 17 00:00:00 2001 From: Kevin Caccamo Date: Sun, 22 Apr 2018 23:14:07 -0400 Subject: [PATCH] Add info about UseSpecial flag feature conflict above Actor.Used --- wadsrc/static/zscript/actor.txt | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/wadsrc/static/zscript/actor.txt b/wadsrc/static/zscript/actor.txt index bec97eda3..61afdef0d 100644 --- a/wadsrc/static/zscript/actor.txt +++ b/wadsrc/static/zscript/actor.txt @@ -453,7 +453,9 @@ class Actor : Thinker native return -1; } - // Called when the player presses 'use' and an actor is found + // Called when the player presses 'use' and an actor is found, except if the + // UseSpecial flag is set. Use level.ExecuteSpecial to call action specials + // instead. virtual bool Used(Actor user) { return false;