Skip to content
Snippets Groups Projects
Commit 1886ae39 authored by Matt Johnston's avatar Matt Johnston
Browse files

Put the slot number after the drink name/price

parent b96be3de
Branches
Tags
No related merge requests found
...@@ -105,7 +105,7 @@ def scroll_options(username, mk, welcome = False): ...@@ -105,7 +105,7 @@ def scroll_options(username, mk, welcome = False):
c = c.strip() c = c.strip()
(slot_num, price, slot_name) = c.split(' ', 2) (slot_num, price, slot_name) = c.split(' ', 2)
if slot_name == 'dead': continue if slot_name == 'dead': continue
choices += '%s8-%s (%sc) '%(slot_num, slot_name, price) choices += '%s-(%sc)-%s8'%(slot_name, price, slot_num)
# we don't want to print snacks for now since it'll be too large # we don't want to print snacks for now since it'll be too large
# and there's physical bits of paper in the machine anyway - matt # and there's physical bits of paper in the machine anyway - matt
...@@ -215,7 +215,7 @@ def setup_idlers(v): ...@@ -215,7 +215,7 @@ def setup_idlers(v):
GrayIdler(v,one="/",zero="\\",reorder=1), GrayIdler(v,one="/",zero="\\",reorder=1),
StringIdler(v, text=str(math.e) + " "), StringIdler(v, text=str(math.e) + " "),
GrayIdler(v,one="X",zero="O",reorder=1), GrayIdler(v,one="X",zero="O",reorder=1),
StringIdler(v, text=" I want some pizza - please call Pizza Hut Shenton Park on +61 8 9381 9979 - and order as Quinn - I am getting really hungry", repeat=False), StringIdler(v, text=" I want some pizza - please call Pizza Hut Shenton Park on +61 8 9381 9979 [now closed? - MSH] - and order as Quinn - I am getting really hungry", repeat=False),
PipeIdler(v, "/usr/bin/getent", "passwd"), PipeIdler(v, "/usr/bin/getent", "passwd"),
FortuneIdler(v), FortuneIdler(v),
ClockIdler(v), ClockIdler(v),
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment