One Hour One Life Forums

a multiplayer game of parenting and civilization building

You are not logged in.

#1 News » Update: Launch Prep » 2024-04-21 21:19:14

jasonrohrer
Replies: 1

Hi4TWr7.png

All of the remaining infrastructure for Another Hour Another Planet is in place now.

It is now possible to ride the rocket inside One Hour One Life, leave the planet, and gain access to Another Hour Another Planet via a Steam Key and an off-Steam download link.  And once you're playing on Another Planet, it's also now possible for you to specify your GitHub account name, and to vote for the current Content Leader.  The current Leader is automatically granted Push access to the anotherPlanet data repository on GitHub, and that access is removed whenever they leave office and are replaced by someone else.

All of this stuff has been tested on my end, and seems to be working.  But I need you to help me test it more thoroughly.

Starting on Monday, I will be making surprise VOG appearances in the game, and placing test launch pads for people to use.  By triggering these launch pads, they will be able to ride the test rocket, gain access to Another Planet, and help me make sure that all of this infrastructure is actually working correctly.

The last thing to do, for me, is to actually draw the rocket, and flesh out the tech tree changes that will make constructing the rocket possible.  Currently, the rocket features place-holder art, and it's currently uncraftable, except by me in VOG mode for testing.

#2 News » Update: Fast Download » 2024-03-15 20:39:46

jasonrohrer
Replies: 2

irdWmLz.png

I've been working on the infrastructure for the Another Hour Another Planet endgame, and the various pieces are coming together.

There are now two AHAP servers running, which you can see here:

http://onehouronelife.com/ahapReflector … ion=report

These are live and playable with bare-bones placeholder content, which is being managed here:

https://github.com/jasonrohrer/AnotherPlanetData

Eventually, the elected Content Leader will be able to edit and add to the content in this repository, and then make it live using this update trigger interface:

http://onehouronelife.com/ahapUpdateGate/

The general idea is that the community will make content (sprites, objects, sounds, and animations) and the submit it to the Content Leader as OXZ export bundles.  The Leader will then choose which content to accept and integrate it into the master content tree, which is being maintained on Github.  Once an "update full" of content is ready, the Leader will be able to push it out to the AHAP servers and players.

Off-Steam, One Hour One Life has always used its own custom-built update-downloading system.  But elements of that system are going to be exercised heavily by all AHAP players in the future---even Steam players---since that's how user-generated content, selected by the Content Leader, will be delivered to players.

In testing this, I noticed that the first diff bundle for AHAP, the one that includes my place-holder content, was annoyingly slow to download.  At around 48 MiB large, it was bigger than most individual OHOL diff bundles.  At first, I thought the bandwidth on my download servers was lacking, but in doing some stress-testing, I found that downloading through the OHOL client was 2 to 4x slower than downloading the same diff bundle directly.

Long ago in my development career, I digested a bit of wisdom and took it to heart:  threads are evil.  Avoid using them whenever possible.  A corollary is that when you're making networked systems, non-blocking IO is the performance king.  In your main thread, you just check the socket to see if there's new data to read, and you read as much as you can, and then you continue on doing other things, and then you return to check the socket again later.  While this is 100% true server-side, when you need to handle requests from hundreds or thousands of simultaneous clients, things end up working a bit differently in interactive GUI software when you're just trying to maximize download bandwidth.

In order to keep the GUI responsive, you have to keep returning to it and synchronizing with it---you need to wait for the graphic cards VSYNC interval.  But waiting for VSYNC can take a while.  On my test system, which was updating the screen at 60 Hz, you can end up waiting for 16.6 ms, worst case.  But what's happening during that 16.6ms?  Well, more data is arriving on the socket, and you're not reading it, because your main thread is stuck waiting for VSYNC.  On a fast network, this is bad, because a lot of data can arrive in 16.6 ms.  Let's say the OS receive buffer for your socket is 8192 bytes, which is the default size on many systems.  And let's say you're on a pretty average DLS connection like mine, downloading at 40 Mbps.  Well,  during that 16.6ms, something like 83,000 bytes will arrive, which overflows the OS receive buffer ten times over.  Even if you code things just right to do as much work as possible between VSYNC, if you wait for even 1/10 of the VSYNC interval, your receive buffer overflows.  I haven't looked into the details of what happens when the buffer overflows, but my guess is that the socket has to send some kind of signal to tell the server to stop sending data (or maybe it's just through lack of packet ACKs coming back to the server).  Regardless, the server is sending packets that aren't being received, and at the bare minimum, they will need to be re-sent later.  Goodbye max throughput.

You can imagine all kinds of tricks to overcome this problem while still using threadless, non-blocking IO, but they all hit the hard reality of waiting on VSYNC eventually.  Even if they don't wait on VSYNC as much, you can't have a responsive UI with a progress bar unless you're occasionally drawing to the screen.

The most straight-forward way to solve this problem is with a thread that runs in the background, receiving data from the socket as fast as possible, while your main thread continues updating the GUI and progress bar in a responsive way.

So yes, there's a thread in OHOL now!  Actually, there was always one other thread in OHOL, because it turns out that on many platforms, resolving a DNS host name to an IP address cannot be done in a non-blocking fashion.  But that LookupThread was pretty trivial.  This new thread is doing a substantial amount of work.

And with all that in place, the OHOL client downloads stuff fast, maximizing the available bandwidth between the download server and you.

For the time being, this will mostly impact off-Steam players who are downloading all of their OHOL updates through this system.

#3 News » Update: Author Credit » 2024-02-16 20:54:39

jasonrohrer
Replies: 1

AOUALUa.png

Content made with the Editor now tracks authorship using a hash of your account's email address or Steam ID.  When you export contents as OXZ files to share with others, your authorship hash goes with your content.  Thus, over time, we can keep track of the portion of the content that each person contributes.  This will be important in connection to the plan for Another Hour Another Planet, which I will explain here.

Another Hour Another Planet will be a separate game, released for real on Steam.

First of all, how will people gain access to Another Planet?  For the time being, there will be a hard-to-build object inside One Hour One Life which requires some kind of server-wide collaboration and consensus:  a rocket ship.  Once this rocket is built, there will be room inside it for one lone traveler.  Whoever is chosen by the collective action of the players on the server will ride the rocket and gain permanent access to Another Planet.  For each rocket launched, one additional person will gain access.

And the content on Another Planet?  It will be entirely conceived, designed, drawn, animated, and assembled by the player community.  Each person who has access to Another Planet will also get the right to vote for the current Content Leader---the person in charge of curating, assembling, and testing the content submitted by the player community.  And yes, the Content Leader might make bad choices, try to sabotage the game, or even just burn out.  A new Content Leader is always just a vote away, and the entire process will be organized through an immutable Github repository, meaning that a future Content Leader can roll back bad content changes if needed.

Over the years, lots of people have disagreed with various content design decisions that I have made.  This will be a chance for the community to make their own decisions, chart their own course, and make the game their own. 

Only the content will be modifiable by end-users.  Another Hour Another Planet will use exactly the same binary client and server code as One Hour One Life, and I'll still be maintaining that, and fixing bugs, into the future.  So we don't need to worry about player-submitted virus code.

Finally according to Steam's policies, games that appear in the Steam Store and in people's game libraries must eventually be sold.  They don't want prestige items, only accessible as prizes earned outside their usual sales channels, clogging up their store and confusing their customers.  So yes, while Another Hour Another Planet will only be accessible by rocket from inside One Hour One Life during it's beta development period, it will eventually be sold to the general public as a real game.  I've set a deadline for you folks, in fact:  roughly two years from now, on February 13, 2026.  Of course, you can all keep working on it and adding content to it after that release date, but you should shoot to have a solid, compelling Another Planet game experience by then.

But if it's sold, that means it might make some money, and then what?

Coming full-circle, that's where the Authorship Tracking comes in.  I promise to share 60% of the revenue from the first year of AHAP sales with each and every person who contributed content to the game world, based on the fraction of the total content that they contributed.  Details still need to be ironed out, but sprites, sounds, objects, animations, transitions, and music will all be factored in.  But even if you only contribute one thing, you will get some money during the first year.

During future years after that, I will make a good-faith effort to continue sharing 60% of revenue with content contributors who's portion of the revenue would total more than $500 for the year.  In other words, I'm not going to continue paying thousands of people a few dollars per year forever.  I will do that during the first year, however.  Regarding the "good faith effort" part:  obviously, I won't live forever, etc.

And the point of all this?

I've dedicated eight years of my life to One Hour One Life.  I'm now 46 years old, and I may not have that many big software projects left in me.  It's time for me to move on to other things, before it's too late.  I could just turn One Hour One Life over to a dev team, or even sell it to a company, in order to keep it going.  But given that I drew every pen line, played every piano note, and recorded every sound myself, it's a very personal work.  It is exactly how I want it to be, and I want to leave it that way, going into the future.  People who play One Hour One Life should be playing my One Hour One Life.  But how can the game really live on, and the community keep thriving, if I stop working on it?  Another Hour Another Planet is an outlet for that future vitality.

One Hour One Life also maintains a certain degree of visual consistency, in part because everything in it was drawn by the same hand, using exactly the same tools (heck, even on exactly the same paper stock).  Any collaborative effort would obviously deviate from that consistency.  In fact, I imagine that Another Hour Another Planet will be a bit of stylistic mish-mash.  But that's perfectly fine, given the theming:  it's supposed to be an alien world, after all.  Alien worlds can be strange.

There are obviously lots of details to iron out, but that's a broad overview of the plan.

#4 News » Update: Methman Memorial » 2024-02-03 20:39:18

jasonrohrer
Replies: 6

vkHTmGi.png

We recently received some sad news.  Methman, a friendly pillar of our community and Discord moderator, died late last fall.

The One Hour One Life community has been remembering him in various ways this week.

His primary online handle was MaDc0w, and I just recently learned where the "Methman" nickname in the OHOL community came from.  Mofobert designed an "OHOL Portrait" of MaDc0w using the Editor, and MaDc0w loved this hilarious image so much that he adopted it as his Discord icon.  MaDc0w thought that this wacky OHOL character with the red cape looked like he was high on meth, so the name Methman was born.

Here is a direct quote from the email that I received from his friend:

Now that the family has had a couple months to grieve we are providing the following statement in one of his online communities. I pass this information on to you so you can choose to make a statement or have a remembrance as well.

It is with deep sadness that we announce the loss of MaDc0w, a friend so close to us that they are considered family. He unfortunately passed suddenly and untimely in the morning on November 30th while in his home. He lived an amazing life with a love of Technology matched by few. MaDc0w was a leader in our community and will be missed by all.

Rest in peace, Methman.  You will be missed.

#5 News » Update: Big Soil » 2024-01-17 17:56:16

jasonrohrer
Replies: 3

4B9uhsi.png

A small mid-week update this week.  You can now pile baskets of soil, just like you can with baskets of charcoal.  There's also been a gotcha fixed with worm farming:  taking the last worm from the wormy soil pile no longer permanently ends the worm farm, since you can put the worm right back in if you've removed it by mistake.

I also spent a good chunk of time this week ironing out the details of AHAP and starting to implement it.  You'll hear more about this soon.

Tomorrow, I'm heading out to Utah for the premier of the documentary Eternal You at Sundance, which is in part about Project December, my AI side-project.  More details here:

https://festival.sundance.org/program/f … 6f45c03c81

I'll be back early next week to resume work on One Hour One Life.

#6 News » Update: Power Edit » 2024-01-13 21:43:11

jasonrohrer
Replies: 1

OAi53ws.png

A bunch of improvements to the Editor this week.

First of all, along with loading mods, which are temporary, the Editor can now import content permanently.  You can either replace objects content (similar to how mods are loaded, but permanently) or add entirely new objects.  To import, drop an OXZ file into the new import_add or import_replace folder.  The idea here is that people who are working together on new content can easily share their work with each other.

The various pickers in the Editor now support searching by ID numbers in addition to name text.

Next/Prev paging in the pickers works more sensibly when holding CTRL and SHIFT for bigger jumps (jumping by 25 on CTRL, 125 on SHIFT, and 625 on CTRL+SHIFT).

You can also search using a new field=value, field>value, or field<value syntax.  For example, searching for food>10 will find all food objects that are worth more than 10 food.  Searching for MapP>0 will find all objects that occur naturally on the map.  Almost all of the text field and checkbox names in the Editor can be used as part of this new search syntax.

There's also a new contentSettings folder, which ships as part of the content updates, to cover settings that are content-specific.  Before, all settings shipped as part of the platform-specific binary client updates.  This meant, for example, that when adding a new emote, both the content (for the emote's appearance) and the binary client (for the emote's settings) would have to receive an update.  Now a content editor, who wants to make deep changes to the game world, can do so with a content update alone and without touching the binary client codebase.

And most importantly, you can now put dried beans in piles and buckets.

#7 News » Update: Steam Workshop Mod Contest » 2023-12-24 20:10:34

jasonrohrer
Replies: 6

M9AP4hh.png

Steam Workshop support is live.  You can find it here:

https://steamcommunity.com/app/595690/workshop/

Instructions for posting mods to Steam Workshop can be found here:

https://steamcommunity.com/sharedfiles/ … 3121137673

And I'm holding a contest for the best mods, as voted by the community, between now and New Year's Day.  Post your mods to Workshop between now and then.  The mods with the most subscribers at or around Noon EST (New York City Time) on New Year's Day win.

There will be ten winners.  Each person can only win one prize, even if they have more than one highly-subscribed mod.

Prizes are as follows:

1st place: $500
2nd place:  $400
3rd place:  $300
4th place:  $200
5th through 10th place:  $100

Prize winners can choose from the following payment methods:

--PayPal

--Cashier's Check by Mail.

--Gold coins/chunks by Mail.

--Silver Coins by Mail.


This is obviously a contest of skill, not a lottery.  If it is illegal in your area, I feel sorry for you.

#8 News » Update: Mod » 2023-12-16 00:56:08

jasonrohrer
Replies: 1

68XtNRq.png

The game client has mod support.

Mods can completely overhaul the look, animation, or sounds of any object in the game.

To install a mod, simply drop an .oxz file into your mods folder.  Multiple mods can be installed together by putting multiple files in there (but if they overlap in terms of which objects they change, one of the mods will override the other according to some kind of mysterious filesystem ordering).

When you launch the game client again, your mods will be loaded.  Note that they don't change the game content permanently.  Simply remove a mod file from the mods folder and re-launch the game client---the game will go back to normal.

Mods can be made using the Editor, which is now included on Steam.  No programming required.

To make a mod, in the Editor, use the Objects tab to edit various objects.  Be sure to use the "Replace" button when saving them inside the Editor.  You can also use the Anim tab to edit animations.  I'm pretty sure that live sound recording isn't working in Windows, but you can experiment with it.

If you want to add new sprites, you can import them using the Sprites tab.  Note that you will need to change settings/editorImportPath.ini to the location of the sprite sheet that you want to import.  Sprites should be on white backgrounds with black outlines (though you can get fuzzy edges by also importing a separate Line Import layer).  I draw the sprites in the game on paper and scan them in, and my scanner puts the scanned page in default.png in my home directory, so that's why the import path is set the way that it is by default.

After you get your objects looking the way that you want them to look (remembering to Replace existing objects, not add new ones---your edited objects should appear mixed into the list on the Object Picker, not at the top of the list), you're ready to export them as a bundle.  Use the Export tab to pick a set of objects.  Give it a name Tag, then press the Export button to save the bundle.  Look in your exports folder for your exported bundles.

Note that any mods in your mods folder will be loaded into the editor for further editing and exporting.  You actually need to load each modded object in the Editor and press Replace at least once before trying to export them.  Whatever is actually saved on disk is what's exported (the live RAM-only data is only temporary, and not saved on disk by default).

However, whatever changes you actually make while creating mods are permanent in your game data folder.  It's usually a good idea to make a working copy of the game data when modding.  Just copy your OneLife folder somewhere else, and run EditOneLife from inside that copied folder.

#9 News » Update: Colonization » 2023-12-01 21:06:08

jasonrohrer
Replies: 5

OwBFbIW.png

The four different groups of people in the game have had different specialties for a while.  Three of the groups have biome specialties, making them the experts who can obtain resources from the jungle, the desert, or the arctic.  The forth group had no specialty biome to call their own, so they became the language experts---the one group that could talk to all the other groups with no language barrier.  The idea was that they could serve as a kind of trading group, traveling from area to area in the world and exchanging specialty resources.

But in the harsh survival reality of the game, this fourth group, the language experts, were always seen as dead wood.  While the other groups were necessary for collective survival, because they provided access to necessary resources for technological advancement, the players could really care less about the fourth group.  If they died out, the rest could still survive and progress just fine.

This week, the language experts get an additional buff:  they can travel and settle anywhere, even outside of their homeland.  This means that they can join other villages and help out long-term, across generations, which will give them more opportunity to put their language translation abilities to good use.

There's also a fix to the way /DIE cycling works on the low-population servers, making parallel solo play on low-population servers viable again.

And finally, there's a new, more detailed food consumption log, which will allow third-party statistics services to compute some interesting things.  The log gets populated on a 24-hour delay, but data will eventually start posting here:

http://publicdata.onehouronelife.com/foodLogDetails/

This was partly inspired by DopiePanda's amazing work on this new leaderboard and stats site:

https://oholcurse.com

#10 Re: News » Update: Gestures » 2023-12-01 14:31:00

Yeah, I was aware of the problem with elders...

I tried making the Wave work with the front arm, and it didn't look great.

#11 Re: News » Update: Boneless » 2023-12-01 14:29:37

The impact on small servers has been fixed (in the next update).

#12 News » Update: Boneless » 2023-11-23 17:08:04

jasonrohrer
Replies: 18

n83Q46v.png

A small update, just in time for Thanksgiving.

Eating a drumstick from a plate no longer causes the leg bone to vanish.  This might seem trivial, except that a full set of turkey bones are needed to make turkey broth.  People ended up with a bunch of useless partial sets of bones that piled up.

You can now reclaim rope from the long shaft, along with being able to reclaim it from other wooden shafts.  This was a small oversight that has been lurking in the game content for years now.

And the biggest change this week:  what happens when you type /DIE as a baby (succumbing to SIDS).

Before, the server would remember only your previous SIDS mother, avoiding her for your next birth.  After you typed /DIE for a second mother, that mother, that second mother would be remembered, allowing you to potentially return back to the first mother.  There are also other factors that are taken into account in birth placement, such as lineage bans, birth cooldowns, etc.  These factors together could mean that if you typed /DIE repeatedly, you might ping-pong back and forth between two different mothers.  This would cause lots of annoyance for these mothers, as well as an accumulation of baby bones.

Now the complete list of every mother that you typed /DIE to avoid is remembered, and you avoid all of them in subsequent births, without ever returning to one.  However, what happens when you run out of mothers by doing this?  You go to Donkeytown.  This is  your signal that there are no mothers left for you to try, or at least that the mother that you're looking for is not available based on some other factor.  However, upon visiting Donkeytown, you aren't stuck there:  your SIDS list is cleared entirely when that happens.  After that, you can use /DIE to cycle through the mothers again.  But Donkeytown is a signal to you:  you've run out of options.  Hopefully, this new system will help to alleviate the annoyance of repeat visits from /DIE-cycling babies.

#13 News » Update: More Fixes » 2023-11-03 20:38:45

jasonrohrer
Replies: 0

PwfFxks.png

More fixes this week, based on some newly reported issues.

A possible exploit that would allow a daisy-chain of carts to be used as an impenetrable wall has been fixed.  Trash pit behavior has been improved to avoid nuisance trashing of some items, and accept some other waste items.  Large animal bones now decay faster.  Defaced graves are no longer permanent (and defaced baby graves decay after two minutes, just like regular baby graves).  Stone walls with shelves can become ancient.  And you can FINALLY place a drumstick down on a plate.

#14 Re: News » Update: Demon Haunted World » 2023-11-03 20:33:43

Well, if you could see your own age, you must have been using a mod.

Most of this ghost stuff was client-side, so vanilla client was needed (or a mod that had been updated).

#15 Re: News » Update: Demon Haunted World » 2023-10-29 03:09:01

Well, the implementation is a bit complicated, and there might be a few bugs to work out.

Like if not every ghost is invisible, that's a bug for sure.

#16 News » Update: Demon Haunted World » 2023-10-28 19:53:29

jasonrohrer
Replies: 6

28YKg4S.png

It might be more than just your imagination.

#17 News » Update: Zero Issues » 2023-10-20 19:58:06

jasonrohrer
Replies: 1

1RnEfnq.png

Thanks to everyone who helped by posting One Thousand Seven Hundred and Ninety bugs and issues over the life of this game.  I'm sure there will be more things discovered in the future, but for now, I've finally made it to the end of a very long list.

While that seems like a lot of bugs and issues, it helps to keep the complexity of this game in perspective.  There are 2400 hand-drawn sprites, which are assembled into 4339 unique objects.  And those objects interact with each other through 5106 transitions.  To put it a different way, this is a game with 4000+ pieces and 5000+ rules.  Obviously, there are lots of opportunities for little things to get overlooked along the way, or for things to not work quite right.

This week, you can spoon ice cream back and forth between bowls, you can no longer walk through rail carts (but you can deconstruct them), there's a new large storage box, stuff inside closed chests doesn't stick out through the lid, you can throw old boots back in while fishing, and blocked bears no longer get stranded in front of their caves forever.  Several bugs with the new gesture system have been fixed.  There are new notifications when you try to assign property (for both success and failure), and brand new players, who might have inflated gene scores, are removed from consideration for special roles until they have lived at least 25 lives.

#18 Main Forum » Testing » 2023-10-18 17:06:38

jasonrohrer
Replies: 0

Seeing if the Monitor.RSS bot that's supposed to cross-post forum stuff on Discord is working.

#19 News » Update: Fermentation Table » 2023-10-13 21:08:25

jasonrohrer
Replies: 0

yNxPial.png

Lots of fixes this week, still pushing through the list of user-reported issues.

You can now carry out most fermentation steps on top of the food preparation tables, and the full fermentation crocks are (slowly) moveable.

There's a way to farm worms without generating loads of excess soil, and worms themselves speed up the composting process.

A bunch of different sub-mechanisms from the machine shop can now be disassembled.

Hand carts no longer decay.

You can detach carts from a hitched riding horse, so the carts are no longer stuck attached to a horse.

#20 News » Update: Gestures » 2023-10-06 21:15:22

jasonrohrer
Replies: 2

lSKE8jc.png

A new feature this week:  Emotes can now go beyond facial expressions and include full body poses and animations.  Five new gestural emotes have been added:

/POINT
/WAVE
/HERE
/WAIT
/UPYOURS

There are some limitations to this system, since the animations have to work well for all age ranges in a person's life.  While an animation for jumping around is possible for an adult, given that babies actually share the same body sprite as an adult (hidden behind their head), it's very hard to make one body motion work well for all ages.

Even for these some of these gestures, babies have to "phone it in" because they don't even have elbow joints.  They tap their waiting foot to the best of their ability, though.

#21 News » Update: Worm Farm » 2023-09-22 21:02:10

jasonrohrer
Replies: 1

xnJsPTB.png

Many fixes this week, including domestic production of worms through compost piles and mass-transportation of worms in buckets.

You can now cultivate willow trees and bald cypress trees, though only in swamp areas.  But these are the only trees in the game that can be cultivated without irrigation.

You can cut a rope back into its component threads.  You can remove cool glass from bowls and stack it.

There's a more sensible camera failure condition when the photo server is unreachable.

Popcorn and garlic behave more consistently when eating out of a bowl.  Antennas are containable.  You can fill bowls with fresh peppercorns.  You can fill backpacks with charcoal, just like you can fill them with soil.  Extracting an arrow from someone no longer causes the arrowhead to disappear from their corpse.

#22 News » Update: Tasty Bottles » 2023-09-15 19:55:05

jasonrohrer
Replies: 0

o2h57I3.png

Lots of fixes this week.

Straw piles get damp after an hour of neglect, and decay to nothing after another hour.  Simply touching the pile fluffs it back up again and dries it out.  Unwanted straw will no longer accumulate eternally.  Shelves can go on stone walls.  You can now bottle sugared cream and mango-infused cow urine---separately, of course.  The chisel now has a visual change when it enters its first semi-used state (when it can no longer be installed in the mining rig).  Visual glitches in the overlap between cart tracks and open doors have been fixed.  Paved roads no longer visually hug nearby walls.

#23 News » Update: Remembrance » 2023-09-07 18:22:46

jasonrohrer
Replies: 1

8Wu0obt.png

Continuing to plow through the list of reported content issues this week.

There are now a bunch of new ways to mark graves.  Bonsai trees can go on tables in all of their stages.  Snake skin boots no longer decay.  Pencils can be piled.  Lathe heads and kraut boards can be deconstructed.  Locks are now much slower to brute force with trial and error.  Several things that had weird visual positions when set on a table have been fixed.

#24 News » Update: Filling Station » 2023-08-25 22:09:19

jasonrohrer
Replies: 1

D4P6XZg.png

A seemingly small update this week, but it actually involved changes to 170 different objects.  You can now fully manipulate all bottles on top of tables, including filling them with funnels.  Before, you had to move a bottle to the ground to fill it with a funnel.  All the bottles also now have better looking positions when held.

#25 News » Update: Fine Milk » 2023-08-18 20:12:11

jasonrohrer
Replies: 14

RjT28LN.png

A raft of fixes this week.  Bugs have been fixed in the presentation of a player that walks into view from far off screen.  Radios no longer mistakenly transmit weird metadata from maps and orders.  A glitch was fixed that prevented cursing living players by name.  You can down drink milk from wine glass.  Empty bottles have better positioning on tables and in boxes.  You can now put slaked lime in a bottle.  A crock of pumpkin can be composted.  Diagonal gradient dry springs can be dug.  You can now dig all the different types of rabbit holes.  Sprinkler pipes now require a two-person effort to remove.  You can remove feathers from hats.  You can now pile up unskinned dead rabbits.  The turkey platter no longer has to be removed from the table for the final stages of slice serving.

Board footer

Powered by FluxBB