Skip to content

Commit

Permalink
Fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
cbbrowne committed Mar 21, 2012
1 parent 584a739 commit 08d2ca0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sample_script.sql
Expand Up @@ -67,7 +67,7 @@ if (select fuel_reserve from my_player) > 5000 then
select 234, ''Miner'', 0,2,2,16, p.location_x, p.location_y from planets p where conqueror_id = 231
order by random() limit 1;
elsif (select fuel_reserve from my_player > 1500) then
elsif ((select fuel_reserve from my_player) > 1500) then
if random() > 0.8 then
insert into want_ships (fleet_id, name, attack, defense, engineering, prospecting,location_x,location_y)
select 231, ''Scout'', 5,4,4,7, p.location_x, p.location_y from planets p where conqueror_id = 231
Expand Down

0 comments on commit 08d2ca0

Please sign in to comment.