mirror of
https://gitlab.com/the-no-frauds-club/cosmonarchy-bw-prerelease.git
synced 2026-09-17 01:01:12 +00:00
11 lines
297 B
Lua
11 lines
297 B
Lua
|
|
require "melee.melee_ai"
|
||
|
|
|
||
|
|
local player = Player()
|
||
|
|
if player.type == PlayerType.Computer then
|
||
|
|
if player.race == RaceId.Askosi then
|
||
|
|
cprint(TextColor.Orange, "Player " .. player.name .. "(P" .. player.id .. "): Askosi AI is not supported!")
|
||
|
|
return
|
||
|
|
end
|
||
|
|
MeleeAI():run()
|
||
|
|
end
|