| 39 |
|
{ "shinobi", "Ninja Mode Enabled (good luck!)", "Ninja Mode Disabled", cheat_shinobi }, |
| 40 |
|
{ "x", "Developer Access Enabled", "Developer Access Disabled", cheat_x }, |
| 41 |
|
{ "testcheat", "Testing...", "", cheat_testcheat }, |
| 42 |
< |
{ "tellmetheversion","Daodan Version ???", "", cheat_tellmetheversion}, |
| 42 |
> |
{ "tellmetheversion","Daodan v.3.0", "", cheat_tellmetheversion}, |
| 43 |
|
{0} |
| 44 |
|
}; |
| 45 |
|
|
| 217 |
|
player->Health = cheat_oldhealth; |
| 218 |
|
player->MaxHealth = cheat_oldmaxhealth; |
| 219 |
|
player->Flags = player->Flags & ~(chr_bossshield | chr_weaponimmune); |
| 220 |
+ |
ai2_deaf = 0; |
| 221 |
|
return 0; |
| 222 |
|
} |
| 223 |
|
else |
| 227 |
|
player->Health = 1; |
| 228 |
|
player->MaxHealth = 1; |
| 229 |
|
player->Flags = player->Flags | chr_bossshield | chr_weaponimmune; |
| 230 |
+ |
ai2_deaf = 1; |
| 231 |
|
return 1; |
| 232 |
|
} |
| 233 |
|
|