game_text: fix Input() recursion

This commit is contained in:
Marco Cawthorne 2025-02-23 06:19:25 -08:00
parent b01c7bc925
commit 2215a256fe

View file

@ -222,6 +222,6 @@ game_text::Input(entity eAct, string strInput, string strData)
Trigger(eAct, TRIG_ON);
break;
default:
Input(eAct, strInput, strData);
super::Input(eAct, strInput, strData);
}
}