Add /pet hold on and /pet hold off support for UF/RoF

This commit is contained in:
Michael Cook (mackal)
2013-09-13 15:20:45 -04:00
parent fdb6f0fe84
commit d119ed058b
5 changed files with 33 additions and 0 deletions
+6
View File
@@ -4051,6 +4051,12 @@ DECODE(OP_PetCommands)
case 0x0f:
emu->command = 0x0c; // Hold
break;
case 0x10:
emu->command = 0x1b; // Hold on
break;
case 0x11:
emu->command = 0x1c; // Hold off
break;
case 0x1c:
emu->command = 0x01; // Back
break;
+6
View File
@@ -3366,6 +3366,12 @@ DECODE(OP_PetCommands)
case 0x0f:
emu->command = 0x0c; // Hold
break;
case 0x10:
emu->command = 0x1b; // Hold on
break;
case 0x11:
emu->command = 0x1c; // Hold off
break;
case 0x1c:
emu->command = 0x01; // Back
break;