Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update to Freeciv server freeciv/freeciv@16048eb132 #823

Merged
merged 1 commit into from
Mar 28, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 13 additions & 12 deletions freeciv-web/src/main/webapp/javascript/fc_types.js
Original file line number Diff line number Diff line change
Expand Up @@ -272,19 +272,20 @@ var ACTION_TELEPORT_ENTER_CONQUER = 119;
var ACTION_CLEAN = 120;
var ACTION_COLLECT_RANSOM = 121;
var ACTION_FORTIFY = 122;
var ACTION_CULTIVATE = 123;
var ACTION_CULTIVATE2 = 124;
var ACTION_PLANT = 125;
var ACTION_PLANT2 = 126;
var ACTION_TRANSFORM_TERRAIN = 127;
var ACTION_TRANSFORM_TERRAIN2 = 128;
var ACTION_FORTIFY2 = 123;
var ACTION_CULTIVATE = 124;
var ACTION_CULTIVATE2 = 125;
var ACTION_PLANT = 126;
var ACTION_PLANT2 = 127;
var ACTION_TRANSFORM_TERRAIN = 128;
var ACTION_TRANSFORM_TERRAIN2 = 129;

var ACTION_GAIN_VETERANCY = 129;
var ACTION_USER_ACTION1 = 130;
var ACTION_USER_ACTION2 = 131;
var ACTION_USER_ACTION3 = 132;
var ACTION_USER_ACTION4 = 133;
var ACTION_COUNT = 134;
var ACTION_GAIN_VETERANCY = 130;
var ACTION_USER_ACTION1 = 131;
var ACTION_USER_ACTION2 = 132;
var ACTION_USER_ACTION3 = 133;
var ACTION_USER_ACTION4 = 134;
var ACTION_COUNT = 135;

/* The action_decision enum */
/* Doesn't need the player to decide what action to take. */
Expand Down
4 changes: 2 additions & 2 deletions freeciv/version.txt
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
# The Git SHA hash for the commit to checkout from
# https://github.com/freeciv/freeciv

FCREV=6ebfac2ab44c29511a016f5866c95f286bbcb849
FCREV=16048eb132118f21eb6c9bfbbf4193b9a9fbec08

ORIGCAPSTR="+Freeciv.Devel-\${MAIN_VERSION}-2024.Feb.01"
ORIGCAPSTR="+Freeciv.Devel-\${MAIN_VERSION}-2024.Feb.07"

# There's no need to bump this constantly as current freeciv-web
# makes no connections to outside world - all connections are
Expand Down
Loading