1
0
mirror of https://github.com/rwengine/openrw.git synced 2024-11-22 18:32:44 +01:00

Script: Support MarkerOnly in 018B

This commit is contained in:
Jannik Vogel 2016-08-28 14:05:02 +02:00
parent 2fdde9a94f
commit 6117be689d

View File

@ -4446,6 +4446,9 @@ void opcode_018b(const ScriptArguments& args, const ScriptBlip blip, const Scrip
default:
blip->display = BlipData::Hide;
break;
case 1:
blip->display = BlipData::MarkerOnly;
break;
case 2:
blip->display = BlipData::RadarOnly;
break;