Check for fixes resource before starting it

This commit is contained in:
Vortrex
2021-02-20 20:10:25 -06:00
parent 2e6bf7ffe1
commit f3884be564

View File

@@ -271,7 +271,9 @@ function enterExitPropertyCommand(command, params, client) {
function loadGameFixesResource() {
switch(getServerGame()) {
case GAME_GTA_III:
findResourceByName("asshat-gta3").start();
if(findResourceByName("asshat-gta3") != null) {
findResourceByName("asshat-gta3").start();
}
break;
default: