- [NEW] Implementat el flag SPECIAL en l'editor

This commit is contained in:
2024-07-01 13:00:39 +02:00
parent e6539f4989
commit 16623cd1de
2 changed files with 4 additions and 1 deletions

View File

@@ -231,6 +231,7 @@ namespace actor
if (value&32) strcat(tmp, "ORIENTABLE ");
if (value&64) strcat(tmp, "DEADLY ");
if (value&128) strcat(tmp, "GRAVITY ");
if (value&512) strcat(tmp, "SPECIAL ");
return tmp;
}