For some unknown reason the HasBehavior check in P_OpenMapData was gone.

SVN r193 (trunk)
This commit is contained in:
Christoph Oelckers 2006-06-15 16:23:41 +00:00
commit 3eb63cf1fa
2 changed files with 13 additions and 25 deletions

View file

@ -1665,6 +1665,13 @@ do_stop:
v=clamp<int>(sc_Number, 0, 90);
break;
case '!': // not boolean (to simulate parameters which default to 1)
SC_MustGetNumber();
v=!sc_Number;
break;
*/
case 'I':
case 'i': // Integer
SC_MustGetNumber();
@ -1677,12 +1684,6 @@ do_stop:
v=fixed_t(sc_Float*FRACUNIT);
break;
case '!': // not boolean (to simulate parameters which default to 1)
SC_MustGetNumber();
v=!sc_Number;
break;
*/
case 'S':
case 's': // Sound name